diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 42464af06..1866c02e7 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -131,9 +131,11 @@ } }, events: { - 'onReady': , + 'onReady': , // deprecated + 'onAppReady': , 'onBack': , 'onDocumentStateChange': + 'onDocumentReady': } } @@ -164,9 +166,11 @@ } }, events: { - 'onReady': , + 'onReady': , // deprecated + 'onAppReady': , 'onBack': , 'onError': , + 'onDocumentReady': } } */ @@ -185,6 +189,9 @@ _config.editorConfig.canRequestEditRights = _config.events && !!_config.events.onRequestEditRights; _config.frameEditorId = placeholderId; + _config.events && !!_config.events.onReady && console.log("Obsolete: The onReady event is deprecated. Please use onAppReady instead."); + _config.events && (_config.events.onAppReady = _config.events.onAppReady || _config.events.onReady); + var onMouseUp = function (evt) { _processMouse(evt); }; @@ -205,7 +212,7 @@ } }; - var _onReady = function() { + var _onAppReady = function() { if (_config.type === 'mobile') { document.body.onfocus = function(e) { setTimeout(function(){ @@ -275,11 +282,11 @@ } else if (msg.event === 'onInternalMessage' && msg.data && msg.data.type == 'localstorage') { _callLocalStorage(msg.data.data); } else { - if (msg.event === 'onReady') { - _onReady(); + if (msg.event === 'onAppReady') { + _onAppReady(); } - if (handler) { + if (handler && typeof handler == "function") { res = handler.call(_self, {target: _self, data: msg.data}); } } diff --git a/apps/common/Gateway.js b/apps/common/Gateway.js index faeee7bb5..1fe953700 100644 --- a/apps/common/Gateway.js +++ b/apps/common/Gateway.js @@ -138,8 +138,8 @@ if (Common === undefined) { return { - ready: function() { - _postMessage({ event: 'onReady' }); + appReady: function() { + _postMessage({ event: 'onAppReady' }); }, requestEditRights: function() { @@ -236,6 +236,10 @@ if (Common === undefined) { _postMessage({event: 'onMetaChange', data: meta}); }, + documentReady: function() { + _postMessage({ event: 'onDocumentReady' }); + }, + on: function(event, handler){ var localHandler = function(event, data){ handler.call(me, data) 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/common/main/lib/controller/ExternalDiagramEditor.js b/apps/common/main/lib/controller/ExternalDiagramEditor.js index 9d9a519d8..3a2275a84 100644 --- a/apps/common/main/lib/controller/ExternalDiagramEditor.js +++ b/apps/common/main/lib/controller/ExternalDiagramEditor.js @@ -77,7 +77,7 @@ define([ user : {id: ('uid-'+Date.now())} }, events: { - 'onReady' : function() {}, + 'onAppReady' : function() {}, 'onDocumentStateChange' : function() {}, 'onError' : function() {}, 'onInternalMessage' : _.bind(this.onInternalMessage, this) diff --git a/apps/common/main/lib/controller/ExternalMergeEditor.js b/apps/common/main/lib/controller/ExternalMergeEditor.js index 00e7fa856..9c17a31b8 100644 --- a/apps/common/main/lib/controller/ExternalMergeEditor.js +++ b/apps/common/main/lib/controller/ExternalMergeEditor.js @@ -77,7 +77,7 @@ define([ user : {id: ('uid-'+Date.now())} }, events: { - 'onReady' : function() {}, + 'onAppReady' : function() {}, 'onDocumentStateChange' : function() {}, 'onError' : function() {}, 'onInternalMessage' : _.bind(this.onInternalMessage, this) diff --git a/apps/common/main/lib/controller/History.js b/apps/common/main/lib/controller/History.js index 70ce86123..6be2b1405 100644 --- a/apps/common/main/lib/controller/History.js +++ b/apps/common/main/lib/controller/History.js @@ -58,6 +58,7 @@ define([ this.currentDocId = ''; this.currentDocIdPrev = ''; this.currentRev = 0; + this.currentServerVersion = 0; }, events: { @@ -130,6 +131,7 @@ define([ this.currentDocId = record.get('docId'); this.currentDocIdPrev = record.get('docIdPrev'); this.currentRev = rev; + this.currentServerVersion = record.get('serverVersion'); if ( _.isEmpty(url) || (urlGetTime - record.get('urlGetTime') > 5 * 60000)) { _.delay(function() { @@ -146,6 +148,7 @@ define([ hist.asc_setArrColors(this.currentArrColors); hist.asc_setToken(token); hist.asc_setIsRequested(false); + hist.asc_setServerVersion(this.currentServerVersion); this.api.asc_showRevision(hist); var commentsController = this.getApplication().getController('Common.Controllers.Comments'); @@ -196,6 +199,7 @@ define([ hist.asc_setArrColors(this.currentArrColors); hist.asc_setToken(token); hist.asc_setIsRequested(true); + hist.asc_setServerVersion(this.currentServerVersion); this.api.asc_showRevision(hist); var commentsController = this.getApplication().getController('Common.Controllers.Comments'); diff --git a/apps/common/main/lib/model/HistoryVersion.js b/apps/common/main/lib/model/HistoryVersion.js index 10fe1f9fe..4908e09b7 100644 --- a/apps/common/main/lib/model/HistoryVersion.js +++ b/apps/common/main/lib/model/HistoryVersion.js @@ -73,7 +73,8 @@ define([ isExpanded: true, isVisible: true, allowSelected: true, - selected: false + selected: false, + serverVersion: 0 } } }); diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 8feba516e..42fdf831c 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -212,12 +212,12 @@ 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'; - // 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..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; + } } } diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index 20d162b59..f83d3505d 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -209,6 +209,8 @@ var ApplicationController = new(function(){ } function onDocumentContentReady() { + Common.Gateway.documentReady(); + hidePreloader(); if ( !embedConfig.shareUrl ) @@ -498,7 +500,7 @@ var ApplicationController = new(function(){ Common.Gateway.on('init', loadConfig); Common.Gateway.on('opendocument', loadDocument); Common.Gateway.on('showmessage', onExternalMessage); - Common.Gateway.ready(); + Common.Gateway.appReady(); } return me; diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 1e8a1d19a..539dce200 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -173,7 +173,7 @@ define([ Common.Gateway.on('init', _.bind(this.loadConfig, this)); Common.Gateway.on('showmessage', _.bind(this.onExternalMessage, this)); Common.Gateway.on('opendocument', _.bind(this.loadDocument, this)); - Common.Gateway.ready(); + Common.Gateway.appReady(); // $(window.top).resize(_.bind(this.onDocumentResize, this)); this.getApplication().getController('Viewport').setApi(this.api); @@ -196,7 +196,7 @@ define([ $(document.body).on('blur', 'input, textarea', function(e) { if (!me.isModalShowed) { if (!e.relatedTarget || - !/area_id/.test(e.target.id) && $(e.target).parent().find(e.relatedTarget).length<1 /* Check if focus in combobox goes from input to it's menu button or menu items */ + !/area_id/.test(e.target.id) && ($(e.target).parent().find(e.relatedTarget).length<1 || e.target.localName == 'textarea') /* Check if focus in combobox goes from input to it's menu button or menu items, or from comment editing area to Ok/Cancel button */ && (e.relatedTarget.localName != 'input' || !/form-control/.test(e.relatedTarget.className)) /* Check if focus goes to text input with class "form-control" */ && (e.relatedTarget.localName != 'textarea' || /area_id/.test(e.relatedTarget.id))) /* Check if focus goes to textarea, but not to "area_id" */ { me.api.asc_enableKeyEvents(true); @@ -442,7 +442,8 @@ define([ markedAsVersion: (group!==version.versionGroup), selected: (opts.data.currentVersion == version.version), canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1), - isExpanded: true + isExpanded: true, + serverVersion: version.serverVersion })); if (opts.data.currentVersion == version.version) { currentVersion = arrVersions[arrVersions.length-1]; @@ -491,7 +492,8 @@ define([ selected: false, canRestore: this.appOptions.canHistoryRestore, isRevision: false, - isVisible: true + isVisible: true, + serverVersion: version.serverVersion })); arrColors.push(user.get('colorval')); } @@ -740,6 +742,8 @@ define([ if (this._isDocReady) return; + Common.Gateway.documentReady(); + if (this._state.openDlg) this._state.openDlg.close(); 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/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/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..56e7ef561 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. @@ -169,14 +170,14 @@

              Edit chart elements

              To edit the chart Title, select the default text with the mouse and type in your own one instead.

              -

              To change the font formatting within text elements, such as the chart title, axes titles, legend entries, data labels etc., select the necessary text element by left-clicking it. Then use icons on the top toolbar to change the font type, size, color or its decoration style.

              +

              To change the font formatting within text elements, such as the chart title, axes titles, legend entries, data labels etc., select the necessary text element by left-clicking it. Then use icons at the Home tab of the top toolbar to change the font type, size, color or its decoration style.

              To delete a chart element, select it by left-clicking and press the Delete key on the keyboard.

              You can also rotate 3D charts using the mouse. Left-click within the plot area and hold the mouse button until a blue dashed box appears. Drag the cursor without releasing the mouse button to change the 3D chart orientation.

              3D chart


              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:
          • Edit Header to insert or edit the header text.
          • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertImages.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertImages.htm index b61ea68bf..4161dc0db 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertImages.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertImages.htm @@ -14,7 +14,8 @@

            To insert an image into the document text,

            1. place the cursor where you want the image to be put,
            2. -
            3. click the Insert Image Insert Image icon icon at the top toolbar,
            4. +
            5. switch to the Insert tab of the top toolbar,
            6. +
            7. click the Picture icon Picture icon at the top toolbar,
            8. select one of the following options to load the image:
              • the Picture from File option will open the standard Windows dialog window for file selection. Browse your computer hard disk drive for the necessary file and click the Open button
              • @@ -30,7 +31,7 @@

                To rotate the image, 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.


                Adjust image settings

                -

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

                +

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

                • Size is used to view the current image Width and Height or restore the image Default Size if necessary.
                • 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).
                • @@ -39,8 +40,8 @@

                  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 image to foreground, send to background, move forward or backward as well as group or ungroup images to perform operations with several of them at once.
                  • -
                  • Align is used to align the image left, center, right, top, middle, bottom.
                  • +
                  • Arrange is used to bring the selected image to foreground, send to background, move forward or backward as well as group or ungroup images 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 image 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
                  • Default Size is used to change the current image size to the default one.
                  • Image Advanced Settings is used to open the 'Image - Advanced Settings' window.
                  • @@ -50,7 +51,7 @@

                    Image - Advanced Settings: Size

                    The Size tab contains the following parameters:

                      -
                    • Width and Height - use these options to change the image width and/or height. If the Constant Proportions Constant Proportions icon button is clicked (in this case it looks like this Constant Proportions icon activated), the width and height will be changed together preserving the original image aspect ratio. To restore the default size of the added image, click the Default Size button.
                    • +
                    • Width and Height - use these options to change the image width and/or height. If the Constant proportions Constant proportions icon button is clicked (in this case it looks like this Constant proportions icon activated), the width and height will be changed together preserving the original image aspect ratio. To restore the default size of the added image, click the Default Size button.

                    Image - Advanced Settings: Text Wrapping

                    The Text Wrapping tab contains the following parameters:

                    @@ -63,15 +64,15 @@
                  • Wrapping Style - Square Square - the text wraps the rectangular box that bounds the image.

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

                  • Wrapping Style - Through Through - the text wraps around the image edges and fills in the open white space within the image. 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 image.

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

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

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

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

                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).

                -

                Image - 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:

                +

                Image - 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 image positioning types: diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertPageNumbers.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertPageNumbers.htm index 04a6d836d..5850b8209 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertPageNumbers.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertPageNumbers.htm @@ -12,7 +12,8 @@

                  Insert page numbers

                  To insert page numbers into your document,

                    -
                  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 Header/Footer icon icon at the top toolbar,
                  6. choose the Insert Page Number submenu,
                  7. select one of the following options:
                      @@ -24,7 +25,7 @@

                      To insert the total number of pages in your document (e.g. if you want to create the Page X of Y entry):

                      1. put the cursor where you want to insert the total number of pages,
                      2. -
                      3. click the Edit Header or Footer Edit Header or Footer icon icon at the top toolbar,
                      4. +
                      5. click the Header/Footer Header/Footer icon icon at the top toolbar,
                      6. select the Insert number of pages option.

                      diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTables.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTables.htm index 28bcba774..33489c2c2 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTables.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTables.htm @@ -13,7 +13,8 @@

                      To insert a table into the document text,

                      1. place the cursor where you want the table to be put,
                      2. -
                      3. click the Insert Table Insert Table icon icon at the top toolbar,
                      4. +
                      5. switch to the Insert tab of the top toolbar,
                      6. +
                      7. click the Table icon Table icon at the top toolbar,
                      8. select the option to create a table:
                        • either a table with predefined number of cells (10 by 8 cells maximum)

                          @@ -119,13 +120,13 @@ Border parameters (size, color and presence or absence) - set the border size, select its color and choose the way it will be displayed in the cells.

                          Note: in case you select not to show table borders clicking the No borders button or deselecting all the borders manually on the diagram, they will be indicated by a dotted line in the document. - To make them disappear at all, click the Nonprinting Characters Nonprinting Characters icon at the top toolbar and select the Hidden Table Borders option. + To make them disappear at all, click the Nonprinting characters Nonprinting characters icon at the Home tab of the top toolbar and select the Hidden Table Borders option.

                        • Cell Background - the color for the background within the cells (available only if one or more cells are selected or the Allow spacing between cells option is selected at the Table tab).
                        • Table Background - the color for the table background or the space background between the cells in case the Allow spacing between cells option is selected at the Table tab.
                        -

                        Table - Advanced Settings

                        +

                        Table - Advanced Settings

                        The Table Position tab is available only if the Flow option at the Text Wrapping tab is selected and contains the following parameters:

                        • Horizontal parameters include the table alignment (left, center, right) relative to margin, page or text as well as the table position to the right of margin, page or text.
                        • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm index 7f62a6af1..ea3794a2c 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm @@ -14,13 +14,13 @@

                          Add a text object

                          You can add a text object anywhere on the page. To do that:

                            -
                          1. click the Insert Text Insert Text icon icon at the top toolbar,
                          2. +
                          3. switch to the Insert tab of the top toolbar,
                          4. select the necessary text object type:
                              -
                            • select the Insert text box option from the menu, then click where you want to insert the text box, hold the mouse button and drag the text box border to specify its size. When you release the mouse button, the insertion point will appear in the added text box, allowing you to enter your text. -

                              Note: it's also possible to insert a text box by clicking the Insert Autoshape Insert Autoshape icon icon at the top toolbar and selecting the Insert Text autoshape shape from the Basic Shapes group.

                              +
                            • to add a text box, click the Text icon Text icon at the top toolbar, then click where you want to insert the text box, hold the mouse button and drag the text box border to specify its size. When you release the mouse button, the insertion point will appear in the added text box, allowing you to enter your text. +

                              Note: it's also possible to insert a text box by clicking the Shape icon Shape icon at the top toolbar and selecting the Insert Text autoshape shape from the Basic Shapes group.

                            • -
                            • select the Insert Text Art option from the menu, then click on the desired style template – the Text Art object will be added at the current cursor position. Select the default text within the text box with the mouse and replace it with your own text.
                            • +
                            • to add a Text Art object, click the Text Art icon Text Art icon at the top toolbar, then click on the desired style template – the Text Art object will be added at the current cursor position. Select the default text within the text box with the mouse and replace it with your own text.
                          5. click outside of the text object to apply the changes and return to the document.
                          6. @@ -33,8 +33,8 @@

                            Text box selected

                            • to resize, move, rotate the text box use the special handles on the edges of the shape.
                            • -
                            • to edit the text box fill, stroke, wrapping style or replace the rectangular box with a different shape, click the Shape Settings Shape Settings icon icon on the right sidebar and use the corresponding options.
                            • -
                            • to align the text box on the page, arrange text boxes as related to other objects, change a wrapping style or access the shape advanced settings, right-click on the text box border and use the contextual menu options.
                            • +
                            • to edit the text box fill, stroke, wrapping style or replace the rectangular box with a different shape, click the Shape settings Shape settings icon icon on the right sidebar and use the corresponding options.
                            • +
                            • to align the text box on the page, arrange text boxes as related to other objects, change a wrapping style or access the shape advanced settings, right-click on the text box border and use the contextual menu options. To learn more on how to arrange and align objects you can refer to this page.

                            Format the text within the text box

                            Click the text within the text box to be able to change its properties. When the text is selected, the text box borders are displayed as dashed lines.

                            @@ -49,10 +49,10 @@
                          7. set line spacing, change paragraph indents, adjust tab stops for the multi-line text within the text box
                          8. insert a hyperlink
                        -

                        You can also click the Text Art Settings Text Art Settings icon icon on the right sidebar and change some style parameters.

                        +

                        You can also click the Text Art settings Text Art settings icon icon on the right sidebar and change some style parameters.

                        Edit a Text Art style

                        -

                        Select a text object and click the Text Art Settings Text Art Settings icon icon on the right sidebar.

                        -

                        Text Art Setting tab

                        +

                        Select a text object and click the Text Art settings Text Art settings icon icon on the right sidebar.

                        +

                        Text Art setting tab

                        Change the applied text style selecting a new Template from the gallery. You can also change the basic style additionally by selecting a different font type, size etc.

                        Change the font Fill. You can choose the following options:

                          diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/LineSpacing.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/LineSpacing.htm index 40fc53adf..9c801cf95 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/LineSpacing.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/LineSpacing.htm @@ -29,7 +29,7 @@
                      -

                      To quickly change the current paragraph line spacing, you can also use the Paragraph Line Spacing Paragraph Line Spacing icon at the top toolbar selecting the needed value from the list: 1.0, 1.15, 1.5, 2.0, 2.5, or 3.0 lines.

                      +

                      To quickly change the current paragraph line spacing, you can also use the Paragraph line spacing Paragraph line spacing icon at the Home tab of the top toolbar selecting the needed value from the list: 1.0, 1.15, 1.5, 2.0, 2.5, or 3.0 lines.

                      \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/NonprintingCharacters.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/NonprintingCharacters.htm index c0fc02cd8..d6da8d95c 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/NonprintingCharacters.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/NonprintingCharacters.htm @@ -10,7 +10,7 @@

                      Show/hide nonprinting characters

                      Nonprinting characters help you edit a document. They indicate the presence of various types of formatting, but they do not print with the document, even when they are displayed on the screen.

                      -

                      To show or hide nonprinting characters, click the Nonprinting Characters Nonprinting Characters icon at the top toolbar.

                      +

                      To show or hide nonprinting characters, click the Nonprinting characters Nonprinting characters icon at the Home tab of the top toolbar.

                      Nonprinting characters include:

                      @@ -41,17 +41,17 @@ - + - + - + diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm index 834ccbc14..261068514 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm @@ -12,16 +12,16 @@

                      After you finished working at one document, you can immediately proceed to an already existing document that you have recently edited, create a new one, or return to the list of existing documents.

                      To create a new document,

                        -
                      1. click the File File icon icon at the left sidebar,
                      2. +
                      3. click the File tab of the top toolbar,
                      4. select the Create New... option.

                      To open a recently edited document within Document Editor,

                        -
                      1. click the File File icon icon at the left sidebar,
                      2. +
                      3. click the File tab of the top toolbar,
                      4. select the Open Recent... option,
                      5. choose the document you need from the list of recently edited documents.
                      -

                      To return to the list of existing documents, click the Go to Documents link in the right upper corner or the File File icon icon at the left sidebar and select the Go to Documents option.

                      +

                      To return to the list of existing documents, click the Go to Documents Go to Documents icon on the right side of the editor header. Alternatively, you can switch to the File tab of the top toolbar and select the Go to Documents option.

                      \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/PageBreaks.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/PageBreaks.htm index 5a58a5744..d37a73146 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/PageBreaks.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/PageBreaks.htm @@ -10,7 +10,7 @@

                      Insert page breaks

                      In Document Editor, you can add the page break to start a new page and adjust pagination options.

                      -

                      To insert a page break at the current cursor position click the Insert Page or Section break Insert Page or Section break icon at the top toolbar or click the arrow next to this icon and select the Insert Page Break option from the menu.

                      +

                      To insert a page break at the current cursor position click the Breaks icon Breaks icon at the Insert or Layout tab of the top toolbar or click the arrow next to this icon and select the Insert Page Break option from the menu.

                      To insert a page break before the selected paragraph i.e. to start this paragraph at the top of a new page:

                      • click the right mouse button and select the Page break before option in the menu, or
                      • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/ParagraphIndents.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/ParagraphIndents.htm index 938a1e304..ee8581581 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/ParagraphIndents.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/ParagraphIndents.htm @@ -19,7 +19,7 @@

                        Paragraph Advanced Settings - Indents & Placement

                        -

                        To quickly change the paragraph offset from the left side of the page, you can also use the respective icons at the top toolbar: Decrease Indent Decrease Indent and Increase Indent Increase Indent.

                        +

                        To quickly change the paragraph offset from the left side of the page, you can also use the respective icons at the Home tab of the top toolbar: Decrease indent Decrease indent and Increase indent Increase indent.

                        You can also use the horizontal ruler to set indents.

                        Ruler - Indent markers

                        Select the necessary paragraph(s) and drag the indent markers along the ruler.

                        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm index 878bf8b1a..995ed03b7 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm @@ -15,12 +15,12 @@
                        • press the Save Save icon icon at the top toolbar, or
                        • use the Ctrl+S key combination, or
                        • -
                        • click the File File icon icon at the left sidebar and select the Save option.
                        • +
                        • click the File tab of the top toolbar and select the Save option.

                        To download the resulting document onto your computer hard disk drive,

                          -
                        1. click the File File icon icon at the left sidebar,
                        2. +
                        3. click the File tab of the top toolbar,
                        4. select the Download as... option,
                        5. choose one of the available formats depending on your needs: PDF, TXT, DOCX, ODT, HTML.
                        @@ -29,7 +29,7 @@
                        • click the Print Print icon icon at the top toolbar, or
                        • use the Ctrl+P key combination, or
                        • -
                        • click the File File icon icon at the left sidebar and select the Print option.
                        • +
                        • click the File tab of the top toolbar and select the Print option.

                        After that a PDF file will be generated on the basis of the document. You can open and print it out, or save onto your computer hard disk drive or removable medium to print it out later.

                        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/SectionBreaks.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/SectionBreaks.htm index 4a77f3896..118e0d4d1 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/SectionBreaks.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/SectionBreaks.htm @@ -14,7 +14,7 @@

                        Note: an inserted section break defines formatting of the preceding part of the document.

                        To insert a section break at the current cursor position:

                          -
                        1. click the Insert Page or Section break Insert Page or Section break icon at the top toolbar
                        2. +
                        3. click the Breaks icon Breaks icon at the Insert or Layout tab of the top toolbar,
                        4. select the Insert Section Break submenu
                        5. select the necessary section break type:
                            @@ -26,7 +26,7 @@

                        Added section breaks are indicated in your document by a double dotted line: Section break

                        -

                        If you do not see the inserted section breaks, click the Nonprinting Characters icon icon at the top toolbar to display them.

                        +

                        If you do not see the inserted section breaks, click the Nonprinting Characters icon icon at the Home tab of the top toolbar to display them.

                        To remove a section break select it with the mouse and press the Delete key. Since a section break defines formatting of the preceding section, when you remove a section break, this section formatting will also be deleted. The document part that preceded the removed section break acquires the formatting of the part that followed it.

                      diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/SetPageParameters.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/SetPageParameters.htm index 8949ad72d..0a07e6d5b 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/SetPageParameters.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/SetPageParameters.htm @@ -10,12 +10,12 @@

                      Set page parameters

                      -

                      To change page layout, i.e. set page orientation and size, adjust margins and insert columns, use the corresponding icons at the top toolbar.

                      +

                      To change page layout, i.e. set page orientation and size, adjust margins and insert columns, use the corresponding icons at the Layout tab of the top toolbar.

                      Note: all these parameters are applied to the entire document. If you need to set different page margins, orientation, size, or column number for the separate parts of your document, please refer to this page.

                      Page Orientation

                      -

                      Change the current orientation type clicking the Page Orientation Page Orientation icon icon. The default orientation type is Portrait that can be switched to Album.

                      +

                      Change the current orientation type clicking the Orientation icon Orientation icon. The default orientation type is Portrait that can be switched to Album.

                      Page Size

                      -

                      Change the default A4 format clicking the Page Size Page Size icon icon and selecting the needed one from the list. The available preset sizes are:

                      +

                      Change the default A4 format clicking the Size icon Size icon and selecting the needed one from the list. The available preset sizes are:

                      • US Letter (21,59cm x 27,94cm)
                      • US Legal (21,59cm x 35,56cm)
                      • @@ -34,12 +34,12 @@

                        You can also set a special page size by selecting the Custom Page Size option from the list. The Page Size window will open where you'll be able to set necessary Width and Height values. Enter your new values into the entry fields or adjust the existing values using arrow buttons. When ready, click OK to apply the changes.

                        Custom Page Size

                        Page Margins

                        -

                        Change default margins, i.e. the blank space between the left, right, top and bottom page edges and the paragraph text, clicking the Page Margins Page Margins icon icon and selecting one of the available presets: Normal, US Normal, Narrow, Moderate, Wide. You can also use the Custom Margins option to set your own values in the Margins window that opens. Enter the necessary Top, Bottom, Left and Right page margin values into the entry fields or adjust the existing values using arrow buttons. When ready, click OK. The custom margins will be applied to the current document and the Last Custom option with the specified parameters will appear in the Page Margins Page Margins icon list so that you can apply them to some other documents.

                        +

                        Change default margins, i.e. the blank space between the left, right, top and bottom page edges and the paragraph text, clicking the Margins icon Margins icon and selecting one of the available presets: Normal, US Normal, Narrow, Moderate, Wide. You can also use the Custom Margins option to set your own values in the Margins window that opens. Enter the necessary Top, Bottom, Left and Right page margin values into the entry fields or adjust the existing values using arrow buttons. When ready, click OK. The custom margins will be applied to the current document and the Last Custom option with the specified parameters will appear in the Margins icon Margins list so that you can apply them to some other documents.

                        Custom Margins

                        You can also change the margins manually by dragging the border between the grey and white areas on the rulers (the grey areas of the rulers indicate page margins):

                        Margins Adjustment

                        Columns

                        -

                        Apply a multi-column layout clicking the Insert columns Insert columns icon icon and selecting the necessary column type from the drop-down list. The following options are available:

                        +

                        Apply a multi-column layout clicking the Columns icon Columns icon and selecting the necessary column type from the drop-down list. The following options are available:

                        • Two Two columns icon - to add two columns of the same width,
                        • Three Three columns icon - to add three columns of the same width,
                        • @@ -48,11 +48,11 @@

                        If you want to adjust column settings, select the Custom Columns option from the list. The Columns window will open where you'll be able to set necessary Number of columns (it's possible to add up to 12 columns) and Spacing between columns. Enter your new values into the entry fields or adjust the existing values using arrow buttons. Check the Column divider box to add a vertical line between the columns. When ready, click OK to apply the changes.

                        Custom Columns

                        -

                        To exactly specify where a new column should start, place the cursor before the text that you want to move into the new column, click the Insert Page or Section Break Insert Page or Section Break icon at the top toolbar and then select the Insert Column Break option. The text will be moved to the next column.

                        -

                        Added column breaks are indicated in your document by a dotted line: Column break. If you do not see the inserted column breaks, click the Nonprinting Characters icon icon at the top toolbar to display them. To remove a column break select it with the mouse and press the Delete key.

                        +

                        To exactly specify where a new column should start, place the cursor before the text that you want to move into the new column, click the Breaks icon Breaks icon at the top toolbar and then select the Insert Column Break option. The text will be moved to the next column.

                        +

                        Added column breaks are indicated in your document by a dotted line: Column break. If you do not see the inserted column breaks, click the Nonprinting Characters icon icon at the Home tab of the top toolbar to display them. To remove a column break select it with the mouse and press the Delete key.

                        To manually change the column width and spacing, you can use the horizontal ruler.

                        Column spacing

                        -

                        To cancel columns and return to a regular single-column layout, click the Insert columns Insert columns icon icon at the top toolbar and select the One One column icon option from the list.

                        +

                        To cancel columns and return to a regular single-column layout, click the Columns icon Columns icon at the top toolbar and select the One One column icon option from the list.

                      \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/UseMailMerge.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/UseMailMerge.htm index ffef01423..40b64544a 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/UseMailMerge.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/UseMailMerge.htm @@ -18,11 +18,11 @@
                    • A data source used for the mail merge must be an .xlsx spreadsheet stored on your portal. Open an existing spreadsheet or create a new one and make sure that it meets the following requirements.

                      The spreadsheet should have a header row with the column titles, as values in the first cell of each column will designate merge fields (i.e. variables that you can insert into the text). Each column should contain a set of actual values for a variable. Each row in the spreadsheet should correspond to a separate record (i.e. a set of values that belongs to a certain recipient). During the merge process, a copy of the main document will be created for each record and each merge field inserted into the main text will be replaced with an actual value from the corresponding column. If you are goung to send results by email, the spreadsheet must also include a column with the recipients' email addresses.

                    • -
                    • Open an existing text document or create a new one. It must contain the main text which will be the same for each version of the merged document. Click the Mail Merge Mail Merge icon icon on the top toolbar.
                    • +
                    • Open an existing text document or create a new one. It must contain the main text which will be the same for each version of the merged document. Click the Mail Merge Mail Merge icon icon at the Home tab of the top toolbar.
                    • The Select Data Source window will open. It displays the list of all your .xlsx spreadsheets stored in the My Documents section. To navigate between other Documents module sections use the menu in the left part of the window. Select the file you need and click OK.
                    • -

                      Once the data source is loaded, the Mail Merge Setting tab will be available on the right sidebar.

                      -

                      Mail Merge Setting tab

                      +

                      Once the data source is loaded, the Mail Merge setting tab will be available on the right sidebar.

                      +

                      Mail Merge setting tab

                    • Verify or change the recipients list
                        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm index 2abbb9efe..098492642 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm @@ -9,20 +9,24 @@

                        View document information

                        -

                        To access the detailed information about the currently edited document, click the File File icon icon at the left sidebar and select the Document Info... option.

                        +

                        To access the detailed information about the currently edited document, click the File tab of the top toolbar and select the Document Info... option.

                        General Information

                        The document information includes document title, author, location, creation date, and statistics: the number of pages, paragraphs, words, symbols, symbols with spaces.

                        -

                        Note: Online Editors allow you to change the document title directly from the editor interface. To do that, select the Rename... option from the File File icon menu or click on the file name displayed in the editor header next to the logo (in the upper left corner), then enter the necessary File name in a new window that opens and click OK.

                        -

                        Permission Information

                        -

                        Note: this option is not available for users with the Read Only permissions.

                        -

                        To find out, who have rights to view or edit the document, select the Access Rights... option at the left sidebar.

                        -

                        You can also change currently selected access rights by pressing the Change access rights button in the Persons who have rights section.

                        -

                        Version History

                        -

                        Note: this option is not available for free accounts as well as for users with the Read Only permissions.

                        -

                        To view all the changes made to this document, select the Version History option at the left sidebar. You'll see the list of this document versions (major changes) and revisions (minor changes) with the indication of each version/revision author and creation date and time. For document versions, the version number is also specified (e.g. ver. 2). To know exactly which changes have been made in each separate version/revision, you can view the one you need by clicking it at the left sidebar. The changes made by the version/revision author are marked with the color which is displayed next to the author name on the left sidebar. To return to the document current version, click the Back to Document link on the top of the version list.

                        +

                        Note: Online Editors allow you to change the document title directly from the editor interface. To do that, click the File tab of the top toolbar and select the Rename... option, then enter the necessary File name in a new window that opens and click OK.

                        +
                        +
                        +

                        Permission Information

                        +

                        Note: this option is not available for users with the Read Only permissions.

                        +

                        To find out, who have rights to view or edit the document, select the Access Rights... option at the left sidebar.

                        +

                        You can also change currently selected access rights by pressing the Change access rights button in the Persons who have rights section.

                        +

                        Version History

                        +

                        Note: this option is not available for free accounts as well as for users with the Read Only permissions.

                        +

                        To view all the changes made to this document, select the Version History option at the left sidebar. You'll see the list of this document versions (major changes) and revisions (minor changes) with the indication of each version/revision author and creation date and time. For document versions, the version number is also specified (e.g. ver. 2). To know exactly which changes have been made in each separate version/revision, you can view the one you need by clicking it at the left sidebar. The changes made by the version/revision author are marked with the color which is displayed next to the author name on the left sidebar. You can use the Restore link below the selected version/revision to restore it.

                        +

                        Version History

                        +

                        To return to the document current version, use the Close History option on the top of the version list.

                        +
                        +

                        To close the File panel and return to document editing, select the Close Menu option.

                        -

                        To close the File panel and return to document editing, select the Close Menu option.

                        - \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/images/access_rights.png b/apps/documenteditor/main/resources/help/en/images/access_rights.png index 6d3cb0bf8..0163e35aa 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/access_rights.png and b/apps/documenteditor/main/resources/help/en/images/access_rights.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/addfootnote.png b/apps/documenteditor/main/resources/help/en/images/addfootnote.png index 319115353..3b2a05b3d 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/addfootnote.png and b/apps/documenteditor/main/resources/help/en/images/addfootnote.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/addhyperlink.png b/apps/documenteditor/main/resources/help/en/images/addhyperlink.png index 5627099c9..47b4c40df 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/addhyperlink.png and b/apps/documenteditor/main/resources/help/en/images/addhyperlink.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/align_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/align_toptoolbar.png new file mode 100644 index 000000000..491f4ade7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/align_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/alignobjectbottom.png b/apps/documenteditor/main/resources/help/en/images/alignobjectbottom.png new file mode 100644 index 000000000..11bf4ab9c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/alignobjectbottom.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/alignobjectcenter.png b/apps/documenteditor/main/resources/help/en/images/alignobjectcenter.png new file mode 100644 index 000000000..c606bf885 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/alignobjectcenter.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/alignobjectleft.png b/apps/documenteditor/main/resources/help/en/images/alignobjectleft.png new file mode 100644 index 000000000..a18fa0fdf Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/alignobjectleft.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/alignobjectmiddle.png b/apps/documenteditor/main/resources/help/en/images/alignobjectmiddle.png new file mode 100644 index 000000000..a22936bac Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/alignobjectmiddle.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/alignobjectright.png b/apps/documenteditor/main/resources/help/en/images/alignobjectright.png new file mode 100644 index 000000000..125207da0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/alignobjectright.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/alignobjecttop.png b/apps/documenteditor/main/resources/help/en/images/alignobjecttop.png new file mode 100644 index 000000000..f9699e8e2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/alignobjecttop.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/bringforward.png b/apps/documenteditor/main/resources/help/en/images/bringforward.png new file mode 100644 index 000000000..91ff2770f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/bringforward.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/bringforward_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/bringforward_toptoolbar.png new file mode 100644 index 000000000..aca81bb63 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/bringforward_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/bringtofront.png b/apps/documenteditor/main/resources/help/en/images/bringtofront.png new file mode 100644 index 000000000..bdd785688 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/bringtofront.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/collapse.png b/apps/documenteditor/main/resources/help/en/images/collapse.png new file mode 100644 index 000000000..4b94a3389 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/collapse.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/comment_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/comment_toptoolbar.png new file mode 100644 index 000000000..a33649d46 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/comment_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/document_language.png b/apps/documenteditor/main/resources/help/en/images/document_language.png index efaa0e861..59a3122ce 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/document_language.png and b/apps/documenteditor/main/resources/help/en/images/document_language.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/expand.png b/apps/documenteditor/main/resources/help/en/images/expand.png new file mode 100644 index 000000000..5de391576 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/expand.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/gotodocuments.png b/apps/documenteditor/main/resources/help/en/images/gotodocuments.png new file mode 100644 index 000000000..3848e209c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/gotodocuments.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/group.png b/apps/documenteditor/main/resources/help/en/images/group.png new file mode 100644 index 000000000..b277d90b8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/group.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/group_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/group_toptoolbar.png new file mode 100644 index 000000000..04b5f4d96 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/group_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/headerfooter.png b/apps/documenteditor/main/resources/help/en/images/headerfooter.png index 5aa235f7f..b5eefac2a 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/headerfooter.png and b/apps/documenteditor/main/resources/help/en/images/headerfooter.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/image.png b/apps/documenteditor/main/resources/help/en/images/image.png index 90eab5b06..58ca36dde 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/image.png and b/apps/documenteditor/main/resources/help/en/images/image.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/insert_dropcap_icon.png b/apps/documenteditor/main/resources/help/en/images/insert_dropcap_icon.png index 0f3a26467..3cdfcba84 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/insert_dropcap_icon.png and b/apps/documenteditor/main/resources/help/en/images/insert_dropcap_icon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/insertautoshape.png b/apps/documenteditor/main/resources/help/en/images/insertautoshape.png index 5e49eab70..315c8474c 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/insertautoshape.png and b/apps/documenteditor/main/resources/help/en/images/insertautoshape.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/insertchart.png b/apps/documenteditor/main/resources/help/en/images/insertchart.png index 0d312f97c..c439ab44f 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/insertchart.png and b/apps/documenteditor/main/resources/help/en/images/insertchart.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/insertcolumns.png b/apps/documenteditor/main/resources/help/en/images/insertcolumns.png index 89c736095..04b7bbe3a 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/insertcolumns.png and b/apps/documenteditor/main/resources/help/en/images/insertcolumns.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/insertequationicon.png b/apps/documenteditor/main/resources/help/en/images/insertequationicon.png index 86b6d1c24..7dcd29b1c 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/insertequationicon.png and b/apps/documenteditor/main/resources/help/en/images/insertequationicon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/inserttextarticon.png b/apps/documenteditor/main/resources/help/en/images/inserttextarticon.png new file mode 100644 index 000000000..7b40e327f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/inserttextarticon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/inserttexticon.png b/apps/documenteditor/main/resources/help/en/images/inserttexticon.png index db7a834ba..26fbaac13 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/inserttexticon.png and b/apps/documenteditor/main/resources/help/en/images/inserttexticon.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/orientation.png b/apps/documenteditor/main/resources/help/en/images/orientation.png index 0d3d9acce..6921d0f38 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/orientation.png and b/apps/documenteditor/main/resources/help/en/images/orientation.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/pagebreak1.png b/apps/documenteditor/main/resources/help/en/images/pagebreak1.png index 8bc075868..86b73bf82 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/pagebreak1.png and b/apps/documenteditor/main/resources/help/en/images/pagebreak1.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/pagemargins.png b/apps/documenteditor/main/resources/help/en/images/pagemargins.png index 4bbbdb27f..eaca1378f 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/pagemargins.png and b/apps/documenteditor/main/resources/help/en/images/pagemargins.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/pagesize.png b/apps/documenteditor/main/resources/help/en/images/pagesize.png index 49ef17523..9c41c5898 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/pagesize.png and b/apps/documenteditor/main/resources/help/en/images/pagesize.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/review_accepttoptoolbar.png b/apps/documenteditor/main/resources/help/en/images/review_accepttoptoolbar.png new file mode 100644 index 000000000..4df148500 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/review_accepttoptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/review_delete.png b/apps/documenteditor/main/resources/help/en/images/review_delete.png new file mode 100644 index 000000000..be4b11b9a Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/review_delete.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/review_displaymode.png b/apps/documenteditor/main/resources/help/en/images/review_displaymode.png new file mode 100644 index 000000000..4fd1ec836 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/review_displaymode.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/review_next.png b/apps/documenteditor/main/resources/help/en/images/review_next.png index fc7bd6f73..3ff9b5028 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/review_next.png and b/apps/documenteditor/main/resources/help/en/images/review_next.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/review_previous.png b/apps/documenteditor/main/resources/help/en/images/review_previous.png index 53e8fa83e..d3c969f61 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/review_previous.png and b/apps/documenteditor/main/resources/help/en/images/review_previous.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/review_rejecttoptoolbar.png b/apps/documenteditor/main/resources/help/en/images/review_rejecttoptoolbar.png new file mode 100644 index 000000000..d544472cf Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/review_rejecttoptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/sendbackward.png b/apps/documenteditor/main/resources/help/en/images/sendbackward.png new file mode 100644 index 000000000..646d2b181 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/sendbackward.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/sendbackward_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/sendbackward_toptoolbar.png new file mode 100644 index 000000000..d32086103 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/sendbackward_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/sendtoback.png b/apps/documenteditor/main/resources/help/en/images/sendtoback.png new file mode 100644 index 000000000..1f7d60ff0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/sendtoback.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/spellcheckactivated.png b/apps/documenteditor/main/resources/help/en/images/spellcheckactivated.png index 33564f1d2..63cc45628 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/spellcheckactivated.png and b/apps/documenteditor/main/resources/help/en/images/spellcheckactivated.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/spellchecking_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/spellchecking_toptoolbar.png new file mode 100644 index 000000000..7c6e601c0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/spellchecking_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/spellchecking_toptoolbar_activated.png b/apps/documenteditor/main/resources/help/en/images/spellchecking_toptoolbar_activated.png new file mode 100644 index 000000000..c39a201d7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/spellchecking_toptoolbar_activated.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/table.png b/apps/documenteditor/main/resources/help/en/images/table.png index c65d9d32b..0e8b33b19 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/table.png and b/apps/documenteditor/main/resources/help/en/images/table.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/trackchangesstatusbar.png b/apps/documenteditor/main/resources/help/en/images/trackchangesstatusbar.png new file mode 100644 index 000000000..99bfb5950 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/trackchangesstatusbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/trackchangestoptoolbar.png b/apps/documenteditor/main/resources/help/en/images/trackchangestoptoolbar.png new file mode 100644 index 000000000..62a6b7a92 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/trackchangestoptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/ungroup.png b/apps/documenteditor/main/resources/help/en/images/ungroup.png new file mode 100644 index 000000000..fba764eb1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/ungroup.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/usersnumber.png b/apps/documenteditor/main/resources/help/en/images/usersnumber.png index 1d378846f..f5319b8ce 100644 Binary files a/apps/documenteditor/main/resources/help/en/images/usersnumber.png and b/apps/documenteditor/main/resources/help/en/images/usersnumber.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/versionhistory.png b/apps/documenteditor/main/resources/help/en/images/versionhistory.png new file mode 100644 index 000000000..42e51ce5f Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/versionhistory.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/wrapping_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/wrapping_toptoolbar.png new file mode 100644 index 000000000..9bc87b65e Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/wrapping_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/wrappingstyle_behind_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_behind_toptoolbar.png new file mode 100644 index 000000000..466ea1e46 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_behind_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/wrappingstyle_infront_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_infront_toptoolbar.png new file mode 100644 index 000000000..882bde69c Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_infront_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/wrappingstyle_inline_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_inline_toptoolbar.png new file mode 100644 index 000000000..a3c94c458 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_inline_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/wrappingstyle_square_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_square_toptoolbar.png new file mode 100644 index 000000000..800bee149 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_square_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/wrappingstyle_through_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_through_toptoolbar.png new file mode 100644 index 000000000..083d2d3ff Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_through_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/wrappingstyle_tight_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_tight_toptoolbar.png new file mode 100644 index 000000000..6d8a46833 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_tight_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/en/images/wrappingstyle_topandbottom_toptoolbar.png b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_topandbottom_toptoolbar.png new file mode 100644 index 000000000..3fb047a00 Binary files /dev/null and b/apps/documenteditor/main/resources/help/en/images/wrappingstyle_topandbottom_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/Contents.json b/apps/documenteditor/main/resources/help/ru/Contents.json index 99cd88926..2f66770fc 100644 --- a/apps/documenteditor/main/resources/help/ru/Contents.json +++ b/apps/documenteditor/main/resources/help/ru/Contents.json @@ -19,7 +19,9 @@ {"src":"UsageInstructions/InsertTables.htm", "name": "Вставка таблиц"}, {"src":"UsageInstructions/InsertImages.htm", "name": "Вставка изображений"}, {"src":"UsageInstructions/InsertAutoshapes.htm", "name": "Вставка автофигур"}, - {"src":"UsageInstructions/InsertCharts.htm", "name": "Вставка диаграмм"}, + {"src": "UsageInstructions/InsertCharts.htm", "name": "Вставка диаграмм" }, + {"src": "UsageInstructions/AlignArrangeObjects.htm", "name": "Выравнивание и упорядочивание объектов на странице" }, + {"src": "UsageInstructions/ChangeWrappingStyle.htm", "name": "Изменение стиля обтекания текстом"}, {"src":"UsageInstructions/AddHyperlinks.htm", "name": "Добавление гиперссылок"}, {"src":"UsageInstructions/InsertDropCap.htm", "name": "Вставка буквицы"}, {"src":"UsageInstructions/InsertHeadersFooters.htm", "name": "Вставка колонтитулов"}, diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm index 6af2ac1d5..391ff5521 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm @@ -9,7 +9,7 @@

                        Дополнительные параметры редактора документов

                        -

                        Вы можете изменить дополнительные параметры онлайн-редактора документов. Для перехода к ним щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Дополнительные параметры.... Можно также использовать значок Значок Дополнительные параметры, расположенный в правом верхнем углу верхней панели инструментов.

                        +

                        Вы можете изменить дополнительные параметры редактора документов. Для перехода к ним откройте вкладку Файл на верхней панели инструментов и выберите опцию Дополнительные параметры.... Можно также использовать значок Значок Дополнительные параметры, расположенный в правом верхнем углу на вкладке Главная верхней панели инструментов.

                        Доступны следующие дополнительные параметры:

                        • Отображение комментариев - используется для включения/отключения опции комментирования в реальном времени: diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm index 4955dceec..d4155a812 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm @@ -23,12 +23,12 @@

                          В редакторе документов можно выбрать один из двух доступных режимов совместного редактирования. Быстрый используется по умолчанию, в нем изменения, вносимые другими пользователями, отображаются в реальном времени. Строгий режим позволяет скрывать изменения, внесенные другими пользователями, до тех пор, пока вы не нажмете значок Сохранить Значок Сохранить, чтобы сохранить ваши изменения и принять изменения, внесенные другими. Режим можно выбрать в Дополнительных настройках.

                          Когда документ редактируют одновременно несколько пользователей в Строгом режиме, редактируемые фрагменты текста помечаются пунктирными линиями разных цветов. При наведении курсора мыши на один из редактируемых фрагментов отображается имя того пользователя, который в данный момент его редактирует. В Быстром режиме действия и имена участников совместного редактирования отображаются непосредственно в процессе редактирования текста.

                          - Количество пользователей, которые в данный момент работают над текущим документом, отображается в левом нижнем углу в строке состояния - Значок Количество пользователей. - Чтобы увидеть, кто именно редактирует файл в настоящий момент, можно открыть панель Чата с полным списком пользователей. + Количество пользователей, которые в данный момент работают над текущим документом, отображается в правой части шапки редактора - Значок Количество пользователей. + Чтобы увидеть, кто именно редактирует файл в настоящий момент, можно щелкнуть по этому значку или открыть панель Чата с полным списком пользователей.

                          -

                          Если файл не просматривают или не редактируют другие пользователи, значок в строке состояния будет выглядеть следующим образом: Значок Управление правами доступа к документу, с его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: Значок Количество пользователей.

                          +

                          Если файл не просматривают или не редактируют другие пользователи, значок в шапке редактора будет выглядеть следующим образом: Значок Управление правами доступа к документу. С его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им права на редактирование, просмотр или рецензирование документа, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: Значок Количество пользователей.

                          Как только один из пользователей сохранит свои изменения, нажав на значок Значок Сохранить, все остальные увидят в строке состояния примечание, которое сообщает о наличии обновлений. Чтобы сохранить внесенные вами изменения и сделать их доступными для других пользователей, а также получить обновления, сохраненные другими пользователями, нажмите на значок Значок Сохранить и получить обновления в левом верхнем углу верхней панели инструментов. Обновления будут подсвечены, чтобы Вы могли проверить, что конкретно изменилось.

                          -

                          Можно указать, какие изменения требуется подсвечивать во время совместного редактирования: для этого нажмите на значок Значок Файл на левой боковой панели, выберите опцию Дополнительные параметры..., а затем укажите, отображать ли все или последние изменения, внесенные при совместной работе. При выборе опции Все будут подсвечиваться все изменения, внесенные за время текущей сессии. При выборе опции Последние будут подсвечиваться только те изменения, которые были внесены с момента, когда Вы последний раз нажимали на значок Значок Сохранить и получить изменения. При выборе опции Никакие изменения, внесенные во время текущей сессии, подсвечиваться не будут.

                          +

                          Можно указать, какие изменения требуется подсвечивать во время совместного редактирования: для этого нажмите на вкладку Файл на верхней панели инструментов, выберите опцию Дополнительные параметры..., а затем укажите, отображать ли все или последние изменения, внесенные при совместной работе. При выборе опции Все будут подсвечиваться все изменения, внесенные за время текущей сессии. При выборе опции Последние будут подсвечиваться только те изменения, которые были внесены с момента, когда Вы последний раз нажимали на значок Значок Сохранить и получить изменения. При выборе опции Никакие изменения, внесенные во время текущей сессии, подсвечиваться не будут.

                          Чат

                          Этот инструмент можно использовать для оперативного согласования процесса совместного редактирования, например, для того, чтобы договориться с другими участниками, кто и что должен делать, какой абзац вы собираетесь сейчас отредактировать и т.д.

                          Сообщения в чате хранятся только в течение одной сессии. Для обсуждения содержания документа лучше использовать комментарии, которые хранятся до тех пор, пока вы не решите их удалить.

                          @@ -46,19 +46,20 @@
                          1. выделите фрагмент текста, в котором, по Вашему мнению, содержится какая-то ошибка или проблема,
                          2. + переключитесь на вкладку Вставка или Рецензирование верхней панели инструментов и нажмите на кнопку Значок Комментарий Комментарий или
                            используйте значок Значок Комментарии на левой боковой панели, чтобы открыть панель Комментарии, и нажмите на ссылку Добавить комментарий к документу или
                            - щелкните правой кнопкой мыши по выделенному фрагменту текста и выберите в меню команду Добавить комментарий, + щелкните правой кнопкой мыши по выделенному фрагменту текста и выберите в контекстном меню команду Добавить комментарий,
                          3. введите нужный текст,
                          4. нажмите кнопку Добавить.

                          Комментарий появится на панели слева. Любой другой пользователь может ответить на добавленный комментарий, чтобы дать ответ на вопросы или отчитаться о проделанной работе. Для этого надо нажать на ссылку Добавить ответ, расположенную под комментарием.

                          -

                          Фрагмент текста, который Вы прокомментировали, будет подсвечен в документе. Для просмотра комментария щелкните по этому фрагменту. Если требуется отключить эту функцию, нажмите на значок Значок Файл, выберите опцию Дополнительные параметры... и снимите флажок Включить отображение комментариев в тексте. В этом случае прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок Значок Комментарии.

                          +

                          Фрагмент текста, который Вы прокомментировали, будет подсвечен в документе. Для просмотра комментария щелкните по этому фрагменту. Если требуется отключить эту функцию, для этого нажмите на вкладку Файл на верхней панели инструментов, выберите опцию Дополнительные параметры... и снимите флажок Включить отображение комментариев в тексте. В этом случае прокомментированные фрагменты будут подсвечиваться, только когда Вы нажмете на значок Значок Комментарии.

                          Вы можете управлять добавленными комментариями следующим образом:

                          • отредактировать их, нажав значок Значок Редактировать,
                          • удалить их, нажав значок Значок Удалить,
                          • -
                          • закрыть обсуждение, нажав на значок Значок Решить, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок Значок Открыть снова. Если Вы хотите скрыть решенные комментарии, нажмите на значок Значок Файл, выберите опцию Дополнительные параметры... и снимите флажок Включить отображение решенных комментариев. В этом случае решенные комментарии будут подсвечиваться, только когда Вы нажмете на значок Значок Комментарии.
                          • +
                          • закрыть обсуждение, нажав на значок Значок Решить, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок Значок Открыть снова. Если Вы хотите скрыть решенные комментарии, нажмите на вкладку Файл на верхней панели инструментов, выберите опцию Дополнительные параметры... и снимите флажок Включить отображение решенных комментариев. В этом случае решенные комментарии будут подсвечиваться, только когда Вы нажмете на значок Значок Комментарии.

                          Если Вы используете Строгий режим совместного редактирования, новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок Значок Сохранить и получить обновления в левом верхнем углу верхней панели инструментов.

                          Чтобы закрыть панель с комментариями, нажмите на значок Значок Комментарии еще раз.

                          diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm index 882c95cf4..4a3192cbd 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm @@ -50,9 +50,9 @@
                    • - + - + @@ -109,12 +109,12 @@ - + - + @@ -239,12 +239,12 @@ - + - + diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/Navigation.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/Navigation.htm index 80e8fc1b9..a342a8dda 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/Navigation.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/Navigation.htm @@ -9,16 +9,18 @@

                      Параметры представления и инструменты навигации

                      -

                      В редакторе документов доступен ряд инструментов, позволяющих облегчить просмотр и навигацию по документу: масштаб, кнопки предыдущей/следующей страницы, указатель номера страницы.

                      +

                      В редакторе документов доступен ряд инструментов, позволяющих облегчить просмотр и навигацию по документу: масштаб, указатель номера страницы и другие.

                      Настройте параметры представления

                      -

                      Чтобы настроить стандартные параметры представления и установить наиболее удобный режим работы с документом, нажмите значок Параметры представления Значок Параметры представления в правом верхнем углу верхней панели инструментов и выберите, какие элементы интерфейса требуется скрыть или отобразить. +

                      Чтобы настроить стандартные параметры представления и установить наиболее удобный режим работы с документом, перейдите на вкладку Главная верхней панели инструментов, нажмите значок Параметры представления Значок Параметры представления в правом верхнем углу и выберите, какие элементы интерфейса требуется скрыть или отобразить. Из выпадающего списка Параметры представления можно выбрать следующие опции:

                        -
                      • Компактная панель инструментов - включает режим компактной панели инструментов, которая предоставляет доступ к основным функциям. Чтобы отобразить стандартную панель инструментов, щелкните по этой опции еще раз.
                      • -
                      • Скрыть строку заголовка - скрывает самую верхнюю панель, на которой отображается название документа и опция Перейти к Документам. Чтобы отобразить скрытую строку заголовка, щелкните по этой опции еще раз.
                      • -
                      • Скрыть строку состояния - скрывает самую нижнюю панель, на которой находится Указатель номера страницы и кнопки Масштаба. Чтобы отобразить скрытую строку состояния, щелкните по этой опции еще раз.
                      • -
                      • Скрыть линейки - скрывает линейки, которые используются для выравнивания текста, графики, таблиц, и других элементов в документе, установки полей, позиций табуляции и отступов абзацев. Чтобы отобразить скрытые линейки, щелкните по этой опции еще раз.
                      • +
                      • + Скрыть панель инструментов - скрывает верхнюю панель инструментов, которая содержит команды. Вкладки при этом остаются видимыми. Чтобы показать панель инструментов, когда эта опция включена, можно нажать на любую вкладку. Панель инструментов будет отображаться до тех пор, пока вы не щелкнете мышью где-либо за ее пределами.
                        Чтобы отключить этот режим, перейдите на вкладку Главная, затем нажмите значок Параметры представления Значок Параметры представления и еще раз щелкните по опции Скрыть панель инструментов. Верхняя панель инструментов будет отображаться постоянно. +

                        Примечание: можно также дважды щелкнуть по любой вкладке, чтобы скрыть верхнюю панель инструментов или отобразить ее снова.

                        +
                      • +
                      • Скрыть строку состояния - скрывает самую нижнюю панель, на которой находится Указатель номера страницы и кнопки Масштаба. Чтобы отобразить скрытую строку состояния, щелкните по этой опции еще раз.
                      • +
                      • Скрыть линейки - скрывает линейки, которые используются для выравнивания текста, графики, таблиц, и других элементов в документе, установки полей, позиций табуляции и отступов абзацев. Чтобы отобразить скрытые линейки, щелкните по этой опции еще раз.

                      Правая боковая панель свернута по умолчанию. Чтобы ее развернуть, выделите любой объект или фрагмент текста и щелкните по значку вкладки, которая в данный момент активирована (чтобы свернуть правую боковую панель, щелкните по этому значку еще раз).

                      Когда открыта панель Комментарии или Чат, левую боковую панель можно настроить путем простого перетаскивания: @@ -31,7 +33,6 @@ Нажмите значок По ширине Кнопка По ширине, чтобы ширина страницы документа соответствовала видимой части рабочей области. Чтобы вся страница целиком помещалась в видимой части рабочей области, нажмите значок По размеру страницы Кнопка по размеру страницы. Параметры масштаба доступны также из выпадающего списка Параметры представления Значок Параметры представления, что может быть полезно в том случае, если Вы решили скрыть строку состояния.

                      -

                      Кнопки Предыдущая страница Кнопка Предыдущая страница и Следующая страница Кнопка Следующая страница расположены в правом нижнем углу под полосой прокрутки и используются для перехода на предыдущую или следующую страницу текущего документа.

                      Указатель номера страницы показывает текущую страницу в составе всех страниц текущего документа (страница 'n' из 'nn'). Щелкните по этой надписи, чтобы открыть окно, в котором Вы можете ввести номер нужной страницы и быстро перейти на нее.

                      diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/Review.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/Review.htm index cdc894e71..a8ec8664e 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/Review.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/Review.htm @@ -12,14 +12,38 @@

                      Когда кто-то предоставляет вам доступ к файлу с правами на рецензирование, используйте функцию Рецензирования документа.

                      Если вы рецензент, то вы можете использовать опцию Рецензирование для проверки документа, изменения предложений, фраз, других элементов страницы, исправления опечаток и выполнения других действий, не редактируя документ непосредственно. Все ваши исправления будут зафиксированы и показаны тому, кто отправил вам документ.

                      Если вы отправляете файл на рецензию, вам потребуется отобразить все внесенные исправления, просмотреть их и принять или отклонить.

                      -

                      В любом случае, Рецензирование включается с помощью кнопки Кнопка Рецензирование в правом нижнем углу строки состояния. Нажмите на кнопку Рецензирование, чтобы активировать опции Отслеживание изменений и Панель изменений одновременно, или используйте стрелку рядом с кнопкой, чтобы выбрать, какие опции надо активировать.

                      -

                      Как только соответствующая опция будет выбрана, откроется Панель изменений:

                      -

                      Панель рецензирования

                      -

                      Примечание: рецензенту нет необходимости открывать Панель изменений, опция Отслеживание изменений включена по умолчанию, и ее нельзя отключить, если к документу предоставлен доступ с правами только на рецензирование.

                      -

                      Чтобы принять изменения, используйте пункт меню Принять в Панели изменений или кнопку Принять Кнопка Принять в оповещении об исправлении.

                      -

                      Примечание: если вы рецензируете документ, не используйте опцию Принять, так как ваши изменения не будут видны никому другому.

                      -

                      Используйте кнопки Кнопка К предыдущему изменению К предыдущему изменению и Кнопка К следующему изменению К следующему изменению для навигации по изменениям или используйте пункт меню Принять текущее изменение в Панели изменений для перехода от одного изменения к другому. Чтобы быстро принять все изменения, можно использовать пункт меню Принять все изменения в Панели изменений.

                      -

                      Чтобы отклонить текущее изменение, нажмите на кнопку Кнопка Отклонить Отклонить или используйте пункт меню Отклонить текущее изменение в Панели изменений и переходите к следующему доступному изменению. Чтобы быстро отклонить все изменения, можно использовать пункт меню Отклонить все изменения в Панели изменений.

                      +

                      Включение функции отслеживания изменений

                      +

                      Чтобы увидеть изменения, предложенные рецензентом, включите опцию Отслеживание изменений одним из следующих способов:

                      +
                        +
                      • нажмите кнопку Кнопка Отслеживать изменения в правом нижнем углу строки состояния или
                      • +
                      • перейдите на вкладку Рецензирование на верхней панели инструментов и нажмите на кнопку Кнопка Отслеживание изменений Отслеживание изменений.
                      • +
                      +

                      Примечание: рецензенту нет необходимости включать опцию Отслеживание изменений. Она включена по умолчанию, и ее нельзя отключить, если к документу предоставлен доступ с правами только на рецензирование.

                      +

                      Выбор режима отображения изменений

                      +

                      Нажмите кнопку Кнопка Отображение Отображение на верхней панели инструментов и выберите из списка один из доступных режимов:

                      +
                        +
                      • Все изменения (Редактирование) - эта опция выбрана по умолчанию. Она позволяет и просматривать предложенные изменения, и редактировать документ.
                      • +
                      • Все изменения приняты (Просмотр) - этот режим используется, чтобы отобразить все изменения, как если бы они были приняты. Эта опция не позволяет в действительности принять все изменения, а только дает возможность увидеть, как будет выглядеть документ после того, как вы примете все изменения. В этом режиме документ нельзя редактировать.
                      • +
                      • Все изменения отклонены (Просмотр) - этот режим используется, чтобы отобразить все изменения, как если бы они были отклонены. Эта опция не позволяет в действительности отклонить все изменения, а только дает возможность просмотреть документ без изменений. В этом режиме документ нельзя редактировать.
                      • +
                      +

                      Принятие и отклонение изменений

                      +

                      Используйте кнопки Кнопка К предыдущему изменению К предыдущему и Кнопка К следующему изменению К следующему на верхней панели инструментов для навигации по изменениям.

                      +

                      Чтобы принять выделенное в данный момент изменение, можно сделать следующее:

                      +
                        +
                      • нажмите кнопку Кнопка Принять Принять на верхней панели инструментов или
                      • +
                      • нажмите направленную вниз стрелку под кнопкой Принять и выберите опцию Принять текущее изменение (в этом случае изменение будет принято, и вы перейдете к следующему изменению) или
                      • +
                      • нажмите кнопку Принять Кнопка Принять во всплывающем оповещении об изменении.
                      • +
                      +

                      Чтобы быстро принять все изменения, нажмите направленную вниз стрелку под кнопкой Кнопка Принять Принять и выберите опцию Принять все изменения.

                      +

                      Чтобы отклонить текущее изменение, можно сделать следующее:

                      +
                        +
                      • нажмите кнопку Кнопка Отклонить Отклонить на верхней панели инструментов или
                      • +
                      • нажмите направленную вниз стрелку под кнопкой Отклонить и выберите опцию Отклонить текущее изменение (в этом случае изменение будет отклонено, и вы перейдете к следующему доступному изменению) или
                      • +
                      • нажмите кнопку Отклонить Кнопка Отклонить во всплывающем оповещении об изменении.
                      • +
                      +

                      Чтобы быстро отклонить все изменения, нажмите направленную вниз стрелку под кнопкой Кнопка Отклонить Отклонить и выберите опцию Отклонить все изменения.

                      +

                      Примечание: если вы рецензируете документ, опции Принять и Отклонить для вас недоступны. Вы можете удалить свои изменения с помощью значка Кнопка Удалить изменение внутри всплывающего окна с изменением.

                      + \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm b/apps/documenteditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm index 406dcf751..0147a8c71 100644 --- a/apps/documenteditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm +++ b/apps/documenteditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm @@ -9,10 +9,16 @@

                      Проверка орфографии

                      -

                      В онлайн-редакторе документов можно проверять правописание текста на определенном языке и исправлять ошибки в ходе редактирования.

                      -

                      Прежде всего выберите язык документа. Щелкните по значку Значок Задать язык документа в правой части строки состояния. В окне, которое появится, выберите нужный язык и нажмите кнопку OK. Выбранный язык будет применен ко всему документу.

                      +

                      В редакторе документов можно проверять правописание текста на определенном языке и исправлять ошибки в ходе редактирования.

                      +

                      Прежде всего выберите язык документа. Перейдите на вкладку Рецензирование верхней панели инструментов и нажмите на значок Значок Задать язык документа Язык. В окне, которое появится, выберите нужный язык и нажмите кнопку OK. Выбранный язык будет применен ко всему документу.

                      Окно выбора языка документа

                      -

                      Чтобы выбрать какой-то другой язык для любого фрагмента текста в этом документе, выделите мышью нужную часть теста и используйте меню Проверка орфографии - выбор языка текста, которое находится в строке состояния.

                      +

                      Чтобы выбрать какой-то другой язык для любого фрагмента текста в этом документе, выделите мышью нужную часть теста и используйте меню Проверка орфографии - выбор языка текста, которое находится в строке состояния.

                      +

                      Для включения функции проверки орфографии можно сделать следующее:

                      +
                        +
                      • нажмите на значок Проверка орфографии - верхняя панель инструментов Проверка орфографии на вкладке Рецензирование верхней панели инструментов или
                      • +
                      • нажмите на значок Проверка орфографии отключена Проверка орфографии в строке состояния или
                      • +
                      • откройте вкладку Файл верхней панели инструментов, выберите опцию Дополнительные параметры..., поставьте галочку рядом с опцией Включить проверку орфографии и нажмите кнопку Применить.
                      • +

                      Слова, написанные с ошибками, будут подчеркнуты красной чертой.

                      Щелкните правой кнопкой мыши по нужному слову, чтобы вызвать меню, и:

                        @@ -21,14 +27,12 @@
                      • выберите другой язык для этого слова.

                      Проверка орфографии

                      -

                      Для отключения проверки орфографии:

                      -
                        -
                      1. щелкните по значку Файл Значок Файл в левой боковой панели инструментов,
                      2. -
                      3. выберите опцию Дополнительные параметры...,
                      4. -
                      5. снимите флажок Включить проверку орфографии,
                      6. -
                      7. щелкните по кнопке Применить.
                      8. -
                      -

                      Вместо этого можно щелкнуть по значку Проверка орфографии включена в правой части Строки состояния, после чего значок будет выглядеть так: Проверка орфографии отключена.

                      +

                      Для отключения функции проверки орфографии можно сделать следующее:

                      +
                        +
                      • нажмите на значок Проверка орфографии - верхняя панель инструментов Проверка орфографии на вкладке Рецензирование верхней панели инструментов или
                      • +
                      • нажмите на значок Проверка орфографии включена Проверка орфографии в строке состояния или
                      • +
                      • откройте вкладку Файл верхней панели инструментов, выберите опцию Дополнительные параметры..., уберите галочку рядом с опцией Включить проверку орфографии и нажмите кнопку Применить.
                      • +
                      \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm index 7275d4f8e..daf105945 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm @@ -13,7 +13,8 @@

                      Для добавления гиперссылки:

                      1. установите курсор в том месте, где надо добавить гиперссылку,
                      2. -
                      3. нажмите значок Добавить гиперссылку Значок Добавить гиперссылку на верхней панели инструментов,
                      4. +
                      5. перейдите на вкладку Вставка верхней панели инструментов,
                      6. +
                      7. нажмите значок Значок Гиперссылка Гиперссылка,
                      8. после этого появится окно Параметры гиперссылки, в котором Вы можете указать параметры гиперссылки:
                        • Связать с - введите URL-адрес в формате http://www.example.com.
                        • @@ -26,7 +27,7 @@

                      Для добавления гиперссылки можно также щелкнуть правой кнопкой мыши и выбрать в меню опцию Гиперссылка, которая открывает окно, показанное выше.

                      Примечание: также можно выделить мышью или с помощью клавиатуры символ, слово, словосочетание, отрывок текста и - нажать значок Добавить гиперссылку Значок Добавить гиперссылку на верхней панели инструментов или щелкнуть по выделенному элементу правой кнопкой мыши и выбрать в меню опцию Гиперссылка. + нажать значок Значок Гиперссылка Гиперссылка на вкладке Вставка верхней панели инструментов или щелкнуть по выделенному фрагменту правой кнопкой мыши и выбрать в меню опцию Гиперссылка. После этого откроется окно, показанное выше, при этом поле Отображать будет содержать выделенный текстовый фрагмент.

                      При наведении курсора на добавленную гиперссылку появится подсказка с заданным текстом. Вы можете перейти по ссылке, нажав клавишу CTRL и щелкнув по ссылке в документе.

                      diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/AlignArrangeObjects.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/AlignArrangeObjects.htm new file mode 100644 index 000000000..042a3c440 --- /dev/null +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/AlignArrangeObjects.htm @@ -0,0 +1,44 @@ + + + + Выравнивание и упорядочивание объектов на странице + + + + + +
                      +

                      Выравнивание и упорядочивание объектов на странице

                      +

                      Добавленные автофигуры, изображения, диаграммы или текстовые поля на странице можно выровнять, сгруппировать и расположить в определенном порядке. Для выполнения любого из этих действий сначала выберите отдельный объект или несколько объектов на странице. Для выделения нескольких объектов удерживайте клавишу Ctrl и щелкайте по нужным объектам левой кнопкой мыши. Чтобы выделить текстовое поле, щелкайте по его границе, а не по тексту внутри него. После этого можно использовать или описанные ниже значки, расположенные на вкладке Макет верхней панели инструментов, или аналогичные команды контекстного меню, вызываемого правой кнопкой мыши.

                      +

                      Выравнивание объектов

                      +

                      Чтобы выровнять выбранный объект или объекты, щелкните по значку Значок Выравнивание Выравнивание на вкладке Макет верхней панели инструментов и выберите из списка нужный тип выравнивания:

                      +
                        +
                      • Выровнять по левому краю Значок Выровнять по левому краю - чтобы выровнять объект (объекты) по горизонтали по левому краю страницы,
                      • +
                      • Выровнять по центру Значок Выровнять по центру - чтобы выровнять объект (объекты) по горизонтали по центру страницы,
                      • +
                      • Выровнять по правому краю Значок Выровнять по правому краю - чтобы выровнять объект (объекты) по горизонтали по правому краю страницы,
                      • +
                      • Выровнять по верхнему краю Значок Выровнять по верхнему краю - чтобы выровнять объект (объекты) по вертикали по верхнему краю страницы,
                      • +
                      • Выровнять по середине Значок Выровнять по середине - чтобы выровнять объект (объекты) по вертикали по середине страницы,
                      • +
                      • Выровнять по нижнему краю Значок Выровнять по нижнему краю - чтобы выровнять объект (объекты) по вертикали по нижнему краю страницы.
                      • +
                      +

                      Группировка объектов

                      +

                      Чтобы сгруппировать два или более выбранных объектов или разгруппировать их, щелкните по стрелке рядом со значком Значок Группировка Группировка на вкладке Макет верхней панели инструментов и выберите из списка нужную опцию:

                      +
                        +
                      • Сгруппировать Значок Сгруппировать - чтобы объединить несколько объектов в группу, так что их можно будет одновременно поворачивать, перемещать, изменять их размер, выравнивать, упорядочивать, копировать, вставлять, форматировать как один объект.
                      • +
                      • Разгруппировать Значок Разгруппировать - чтобы разгруппировать выбранную группу ранее сгруппированных объектов.
                      • +
                      +

                      Можно также щелкнуть по выделенным объектам правой кнопкой мыши, выбрать из контекстного меню пункт Порядок, а затем использовать опцию Сгруппировать или Разгруппировать.

                      +

                      Упорядочивание объектов

                      +

                      Чтобы определенным образом расположить выбранный объект или объекты (например, изменить их порядок, если несколько объектов накладываются друг на друга), можно использовать значки Значок Перенести вперед Перенести вперед и Значок Перенести назад Перенести назад на вкладке Макет верхней панели инструментов и выбрать из списка нужный тип расположения.

                      +

                      Чтобы переместить выбранный объект (объекты) вперед, нажмите на стрелку рядом со значком Значок Перенести вперед Перенести вперед на вкладке Макет верхней панели инструментов и выберите из списка нужный тип расположения:

                      +
                        +
                      • Перенести на передний план Значок Перенести на передний план - чтобы переместить выбранный объект (объекты), так что он будет находиться перед всеми остальными объектами,
                      • +
                      • Перенести вперед Значок Перенести вперед - чтобы переместить выбранный объект (объекты) на один уровень вперед по отношению к другим объектам.
                      • +
                      +

                      Чтобы переместить выбранный объект (объекты) назад, нажмите на стрелку рядом со значком Значок Перенести назад Перенести назад на вкладке Макет верхней панели инструментов и выберите из списка нужный тип расположения:

                      +
                        +
                      • Перенести на задний план Значок Перенести на задний план - чтобы переместить выбранный объект (объекты), так что он будет находиться позади всех остальных объектов,
                      • +
                      • Перенести назад Значок Перенести назад - чтобы переместить выбранный объект (объекты) на один уровень назад по отношению к другим объектам.
                      • +
                      +
                      + + \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/AlignText.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/AlignText.htm index 373faa3fb..e830d895f 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/AlignText.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/AlignText.htm @@ -12,7 +12,8 @@

                      Текст обычно выравнивается четырьмя способами: по левому краю, по правому краю, по центру или по ширине. Для этого:

                      1. установите курсор в том месте, где требуется применить выравнивание (это может быть новая строка или уже введенный текст),
                      2. -
                      3. выберите тип выравнивания, который надо применить: +
                      4. перейдите на вкладку Главная верхней панели инструментов,
                      5. +
                      6. выберите тип выравнивания, который надо применить:
                        • Выравнивание по левому краю, при котором текст выравнивается по левому краю страницы (правый край остается невыровненным), выполняется с помощью значка Выравнивание по левому краю Значок Выравнивание по левому краю, расположенного на верхней панели инструментов.
                        • Выравнивание по центру, при котором текст выравнивается по центру страницы (правый и левый края остаются невыровненными), выполняется с помощью значка Выравнивание по центру Значок Выравнивание по центру, расположенного на верхней панели инструментов.
                        • diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/BackgroundColor.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/BackgroundColor.htm index 59585256e..ed35b3dc8 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/BackgroundColor.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/BackgroundColor.htm @@ -13,11 +13,11 @@

                          Цвет фона применяется ко всему абзацу и полностью заполняет пространство абзаца от левого поля страницы до правого поля страницы.

                          Чтобы применить цвет фона к определенному абзацу или изменить тот цвет, который выбран в данный момент:

                            -
                          1. выберите цветовую схему документа из доступных, нажав на значок Изменение цветовой схемы Изменение цветовой схемы на верхней панели инструментов
                          2. +
                          3. выберите цветовую схему документа из доступных, нажав на значок Изменение цветовой схемы Изменение цветовой схемы на вкладке Главная верхней панели инструментов
                          4. установите курсор в пределах нужного абзаца или выделите мышью несколько абзацев или весь текст с помощью сочетания клавиш Ctrl+A,
                          5. откройте окно цветовых палитр. Это можно сделать это одним из следующих способов:
                              -
                            • нажмите на направленную вниз стрелку рядом со значком Значок Цвет фона абзаца на верхней панели инструментов, или
                            • +
                            • нажмите на направленную вниз стрелку рядом со значком Значок Цвет фона абзаца на вкладке Главная верхней панели инструментов, или
                            • нажмите на цветовое поле рядом с надписью Цвет фона на правой боковой панели инструментов, или
                            • нажмите на ссылку "Дополнительные параметры" на правой боковой панели инструментов или воспользуйтесь опцией "Дополнительные параметры абзаца" в контекстном меню, а затем перейдите на вкладку "Границы и заливка" в окне "Абзац - Дополнительные параметры" и нажмите на цветовое поле рядом с надписью Цвет фона.
                            diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/ChangeColorScheme.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/ChangeColorScheme.htm index 0f80870d7..bd155caec 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/ChangeColorScheme.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/ChangeColorScheme.htm @@ -17,7 +17,7 @@ выбрали другую Цветовую схему, то цвета, примененные в вашем документе, соответствующим образом изменятся.

                            - Для изменения цветовой схемы щелкните по направленной вниз стрелке рядом со значком Изменить цветовую схему Изменение цветовой схемы в правой части верхней панели инструментов + Для изменения цветовой схемы щелкните по направленной вниз стрелке рядом со значком Изменить цветовую схему Изменение цветовой схемы на вкладке Главная верхней панели инструментов и выберите нужную цветовую схему из имеющихся вариантов: Стандартная, Оттенки серого, Апекс, Аспект, Официальная, Открытая, Справедливость, Поток, Литейная, Обычная, Метро, Модульная, Изящная, Эркер, Начальная, Бумажная, Солнцестояние, Техническая, Трек, Городская, Яркая. @@ -27,7 +27,7 @@

                            Выбрав предпочтительную цветовую схему, вы сможете выбрать цвета в окне цветовых палитр, соответствующем тому элементу документа, к которому вы хотите - применить тот или иной цвет. Для большинства элементов документа к окну цветовых палитр можно получить доступ, нажав на цветной прямоугольник на правой боковой панели, когда нужный элемент выделен. Для шрифта это окно можно открыть с помощью направленной вниз стрелки рядом со значком Цвет шрифта Цвет шрифта на верхней панели инструментов. Предусмотрены следующие палитры:

                            + применить тот или иной цвет. Для большинства элементов документа к окну цветовых палитр можно получить доступ, нажав на цветной прямоугольник на правой боковой панели, когда нужный элемент выделен. Для шрифта это окно можно открыть с помощью направленной вниз стрелки рядом со значком Цвет шрифта Цвет шрифта на вкладке Главная верхней панели инструментов. Предусмотрены следующие палитры:

                            Палитра diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/ChangeWrappingStyle.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/ChangeWrappingStyle.htm new file mode 100644 index 000000000..cdb9f5f39 --- /dev/null +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/ChangeWrappingStyle.htm @@ -0,0 +1,67 @@ + + + + Изменение стиля обтекания текстом + + + + + +

                            +

                            Изменение стиля обтекания текстом

                            +

                            Опция Стиль обтекания определяет способ размещения объекта относительно текста. Можно изменить стиль обтекания текстом для вставленных объектов, таких как фигуры, изображения, диаграммы, текстовые поля или таблицы.

                            +

                            Изменение стиля обтекания текстом для фигур, изображений, диаграмм, текстовых полей

                            +

                            Для изменения выбранного в данный момент стиля обтекания:

                            +
                              +
                            1. выделите отдельный объект на странице, щелкнув по нему левой кнопкой мыши. Чтобы выделить текстовое поле, щелкайте по его границе, а не по тексту внутри него.
                            2. +
                            3. откройте настройки обтекания текстом: +
                                +
                              • перейдите на вкладку Макет верхней панели инструментов и нажмите на стрелку рядом со значком Значок Обтекание Обтекание или
                              • +
                              • щелкните по объекту правой кнопкой мыши и выберите в контекстном меню пункт Стиль обтекания или
                              • +
                              • щелкните по объекту правой кнопкой мыши, выберите опцию Дополнительные параметры и перейдите на вкладку Обтекание текстом в окне Дополнительные параметры объекта.
                              • +
                              +
                            4. +
                            5. выберите нужный стиль обтекания: +
                                +
                              • +

                                Стиль обтекания - В тексте В тексте - объект считается частью текста, как отдельный символ, поэтому при перемещении текста объект тоже перемещается. В этом случае параметры расположения недоступны.

                                +

                                Если выбран один из следующих стилей, объект можно перемещать независимо от текста и и точно задавать положение объекта на странице:

                                +
                              • +
                              • Стиль обтекания - Вокруг рамки Вокруг рамки - текст обтекает прямоугольную рамку, которая окружает объект.

                              • +
                              • Стиль обтекания - По контуру По контуру - текст обтекает реальные контуры объекта.

                              • +
                              • Стиль обтекания - Сквозное Сквозное - текст обтекает вокруг контуров объекта и заполняет незамкнутое свободное место внутри объекта. Чтобы этот эффект проявился, используйте опцию Изменить границу обтекания из контекстного меню.

                              • +
                              • Стиль обтекания - Сверху и снизу Сверху и снизу - текст находится только выше и ниже объекта.

                              • +
                              • Стиль обтекания - Перед текстом Перед текстом - объект перекрывает текст.

                              • +
                              • Стиль обтекания - За текстом За текстом - текст перекрывает объект.

                              • +
                              +
                            6. +
                            +

                            При выборе стиля обтекания Вокруг рамки, По контуру, Сквозное или Сверху и снизу можно задать дополнительные параметры - Расстояние до текста со всех сторон (сверху, снизу, слева, справа). Чтобы открыть эти настройки, щелкните по объекту правой кнопкой мыши, выберите опцию Дополнительные параметры и перейдите на вкладку Обтекание текстом в окне Дополнительные параметры объекта. Укажите нужные значения и нажмите кнопку OK.

                            +

                            Если выбран стиль обтекания, отличный от стиля В тексте, в окне Дополнительные параметры объекта также становится доступна вкладка Положение. Для получения дополнительной информации об этих параметрах обратитесь к соответствующим страницам с инструкциями по работе с фигурами, изображениями или диаграммами.

                            +

                            Если выбран стиль обтекания, отличный от стиля В тексте, можно также редактировать контур обтекания для изображений или фигур. Щелкните по объекту правой кнопкой мыши, выберите в контекстном меню пункт Стиль обтекания и щелкните по опции Изменить границу обтекания. Чтобы произвольно изменить границу, перетаскивайте точки границы обтекания. Чтобы создать новую точку границы обтекания, щелкните в любом месте на красной линии и перетащите ее в нужную позицию. Изменение границы обтекания

                            +

                            Изменение стиля обтекания текстом для таблиц

                            +

                            Для таблиц доступны два следующих стиля обтекания: Встроенный и Плавающий.

                            +

                            Для изменения выбранного в данный момент стиля обтекания:

                            +
                              +
                            1. щелкните по таблице правой кнопкой мыши,
                            2. +
                            3. откройте настройки обтекания текстом: +
                                + +
                              • выберите пункт контекстного меню Дополнительные параметры таблицы и перейдите на вкладку Обтекание текстом окна Таблица - Дополнительные параметры или
                              • +
                              • выберите один из следующих пунктов контекстного меню: +
                                  +
                                • Стиль обтекания - Встроенный - используется для выбора встроенного стиля обтекания (при котором таблица разрывает текст), а также выравнивания: по левому краю, по центру, по правому краю.
                                • +
                                • Стиль обтекания - Плавающий - используется для выбора плавающего стиля обтекания, при котором текст размещается вокруг таблицы.
                                • +
                                +
                              • +
                              +
                            4. +
                            +

                            На вкладке Обтекание текстом окна Таблица - Дополнительные параметры можно также задать следующие дополнительные параметры:

                            +
                              +
                            • Для встроенных таблиц можно задать тип Выравнивания таблицы (по левому краю, по центру или по правому краю) и Отступ слева.
                            • +
                            • Для плавающих таблиц можно задать Расстояние до текста и положение на вкладке Положение таблицы.
                            • +
                            +
                            + + \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/CopyClearFormatting.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/CopyClearFormatting.htm index 15fee1e36..15ec87ce2 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/CopyClearFormatting.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/CopyClearFormatting.htm @@ -13,20 +13,20 @@

                            Чтобы скопировать определенное форматирование текста,

                            1. с помощью мыши или клавиатуры выделите фрагмент текста, форматирование которого надо скопировать,
                            2. -
                            3. нажмите значок Копировать стиль Копировать стиль на верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля),
                            4. +
                            5. нажмите значок Копировать стиль Копировать стиль на вкладке Главная верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля),
                            6. выделите фрагмент текста, к которому требуется применить то же самое форматирование.

                            Чтобы применить скопированное форматирование ко множеству фрагментов текста,

                            1. с помощью мыши или клавиатуры выделите фрагмент текста, форматирование которого надо скопировать,
                            2. -
                            3. дважды нажмите значок Копировать стиль Копировать стиль на верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля, а значок Копировать стиль будет оставаться нажатым: Множественное копирование стиля),
                            4. +
                            5. дважды нажмите значок Копировать стиль Копировать стиль на вкладке Главная верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля, а значок Копировать стиль будет оставаться нажатым: Множественное копирование стиля),
                            6. поочередно выделяйте нужные фрагменты текста, чтобы применить одинаковое форматирование к каждому из них,
                            7. для выхода из этого режима еще раз нажмите значок Копировать стиль Множественное копирование стиля или нажмите клавишу Esc на клавиатуре.

                            Чтобы быстро убрать из текста примененное форматирование,

                            1. выделите фрагмент текста, форматирование которого надо убрать,
                            2. -
                            3. нажмите значок Очистить стиль Очистить стиль на верхней панели инструментов.
                            4. +
                            5. нажмите значок Очистить стиль Очистить стиль на вкладке Главная верхней панели инструментов.
                            diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/CopyPasteUndoRedo.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/CopyPasteUndoRedo.htm index 6e8932444..e486e2b1e 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/CopyPasteUndoRedo.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/CopyPasteUndoRedo.htm @@ -10,7 +10,7 @@

                            Копирование/вставка текста, отмена/повтор действий

                            Использование основных операций с буфером обмена

                            -

                            Для выполнения операций вырезания, копирования и вставки фрагментов текста и вставленных объектов (автофигур, рисунков, диаграмм) в текущем документе используйте соответствующие команды контекстного меню или значки на верхней панели инструментов:

                            +

                            Для выполнения операций вырезания, копирования и вставки фрагментов текста и вставленных объектов (автофигур, рисунков, диаграмм) в текущем документе используйте соответствующие команды контекстного меню или значки, доступные на любой вкладке верхней панели инструментов:

                            • Вырезать – выделите фрагмент текста или объект и используйте опцию контекстного меню Вырезать, чтобы удалить выделенный фрагмент и отправить его в буфер обмена компьютера. Вырезанные данные можно затем вставить в другое место этого же документа.
                            • Копировать – выделите фрагмент текста или объект и используйте опцию контекстного меню Копировать или значок Копировать Значок Копировать на верхней панели инструментов, чтобы скопировать выделенный фрагмент в буфер обмена компьютера. Скопированные данные можно затем вставить в другое место этого же документа.
                            • @@ -31,7 +31,7 @@
                            • Сохранить только текст - позволяет вставить текст без исходного форматирования.

                            Отмена / повтор действий

                            -

                            Для выполнения операций отмены/повтора используйте соответствующие значки на верхней панели инструментов или сочетания клавиш:

                            +

                            Для выполнения операций отмены/повтора используйте соответствующие значки, доступные на любой вкладке верхней панели инструментов, или сочетания клавиш:

                            • Отменить – чтобы отменить последнее выполненное действие, используйте значок Отменить Значок Отменить на верхней панели инструментов или сочетание клавиш Ctrl+Z.
                            • Повторить – чтобы повторить последнее отмененное действие, используйте значок Повторить Значок Повторить на верхней панели инструментов или сочетание клавиш Ctrl+Y.
                            • diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/CreateLists.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/CreateLists.htm index 06026557a..78ee8ac38 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/CreateLists.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/CreateLists.htm @@ -13,7 +13,8 @@

                              Для создания в документе списка:

                              1. установите курсор в том месте, где начнется список (это может быть новая строка или уже введенный текст),
                              2. -
                              3. выберите тип списка, который требуется создать: +
                              4. перейдите на вкладку Главная верхней панели инструментов,
                              5. +
                              6. выберите тип списка, который требуется создать:
                                • Неупорядоченный список с маркерами создается с помощью значка Маркированный список Значок Маркированный список, расположенного на верхней панели инструментов
                                • Упорядоченный список с цифрами или буквами создается с помощью значка Нумерованный список Значок Нумерованный список, расположенного на верхней панели инструментов @@ -23,7 +24,7 @@
                                • теперь при каждом нажатии в конце строки клавиши Enter будет появляться новый элемент упорядоченного или неупорядоченного списка. Чтобы закончить список, нажмите клавишу Backspace и продолжайте текст обычного абзаца.
                              -

                              Можно также изменить отступы текста в списках и их вложенность с помощью значков Структура Значок Структура, Уменьшить отступ Значок Уменьшить отступ и Увеличить отступ Значок Увеличить отступ на верхней панели инструментов.

                              +

                              Можно также изменить отступы текста в списках и их вложенность с помощью значков Структура Значок Структура, Уменьшить отступ Значок Уменьшить отступ и Увеличить отступ Значок Увеличить отступ на вкладке Главная верхней панели инструментов.

                              Примечание: дополнительные параметры отступов и интервалов можно изменить на правой боковой панели и в окне дополнительных параметров. Чтобы получить дополнительную информацию об этом, прочитайте разделы Изменение отступов абзацев и Задание междустрочного интервала в абзацах.

                            diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/DecorationStyles.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/DecorationStyles.htm index 8f0f26dce..15570f0e6 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/DecorationStyles.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/DecorationStyles.htm @@ -10,7 +10,7 @@

                            Применение стилей оформления шрифта

                            -

                            Вы можете применять различные стили оформления шрифта, используя соответствующие значки, расположенные на верхней панели инструментов.

                            +

                            Вы можете применять различные стили оформления шрифта, используя соответствующие значки, расположенные на вкладке Главная верхней панели инструментов.

                            Примечание: если требуется отформатировать текст, который уже есть в документе, выделите его мышью или с помощью клавиатуры, а затем примените форматирование.

                      Page breaks Page breakInserted when you use the Insert Page or Section Break Insert Page or Section Break icon at the top toolbar and then select the Insert Page Break option, or select the Page break before option in the right-click menu or advanced settings window.Inserted when you use the Breaks icon Breaks icon at the Insert or Layout tab of the top toolbar and then select the Insert Page Break option, or select the Page break before option in the right-click menu or advanced settings window.
                      Section breaks Section breakInserted when you use the Insert Page or Section Break Insert Page or Section Break icon at the top toolbar and then select one of the Insert Section Break submenu options (the section break indicator differs depending on which option is selected: Next Page, Continuous Page, Even Page or Odd Page).Inserted when you use the Breaks icon Breaks icon at the Insert or Layout tab of the top toolbar and then select one of the Insert Section Break submenu options (the section break indicator differs depending on which option is selected: Next Page, Continuous Page, Even Page or Odd Page).
                      Column breaks Column breakInserted when you use the Insert Page or Section Break Insert Page or Section Break icon at the top toolbar and then select the Insert Column Break option.Inserted when you use the Breaks icon Breaks icon at the Insert or Layout tab of the top toolbar and then select the Insert Column Break option.
                      End-of-cell and end-of row markers in tables Распечатать документ на одном из доступных принтеров или сохранить в файл.
                      Сохранить как (Загрузить как)Скачать как... Ctrl+Shift+SСохранить редактируемый документ на жестком диске компьютера в одном из поддерживаемых форматов: PDF, TXT, DOCX, DOC, ODT, RTF, HTML, EPUB.Сохранить редактируемый документ на жестком диске компьютера в одном из поддерживаемых форматов: PDF, TXT, DOCX, ODT, HTML.
                      Полноэкранный режим
                      УвеличитьCtrl++Ctrl+плюс (+) Увеличить масштаб редактируемого документа.
                      УменьшитьCtrl+-Ctrl+минус (-) Уменьшить масштаб редактируемого документа.
                      Подстрочные знакиCtrl+.(точка)Ctrl+точка (.) Сделать выделенный фрагмент текста мельче и поместить его в нижней части строки, например, как в химических формулах.
                      Надстрочные знакиCtrl+,(запятая)Ctrl+запятая (,) Сделать выделенный фрагмент текста мельче и поместить его в верхней части строки, например, как в дробях.
                      diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/FontTypeSizeColor.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/FontTypeSizeColor.htm index 713d319c7..849712607 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/FontTypeSizeColor.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/FontTypeSizeColor.htm @@ -10,12 +10,12 @@

                      Задание типа, размера и цвета шрифта

                      -

                      Вы можете выбрать тип шрифта, его размер и цвет, используя соответствующие значки на верхней панели инструментов.

                      +

                      Вы можете выбрать тип шрифта, его размер и цвет, используя соответствующие значки на вкладке Главная верхней панели инструментов.

                      Примечание: если требуется отформатировать текст, который уже есть в документе, выделите его мышью или с помощью клавиатуры, а затем примените форматирование.

                      - - + + diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/FormattingPresets.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/FormattingPresets.htm index d591955e7..68000e106 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/FormattingPresets.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/FormattingPresets.htm @@ -14,7 +14,7 @@

                      Чтобы применить один из доступных стилей форматирования текста:

                      1. установите курсор внутри нужного абзаца или выделите несколько абзацев, к которым требуется применить стиль форматирования,
                      2. -
                      3. выберите нужный стиль из библиотеки стилей справа на верхней панели инструментов.
                      4. +
                      5. выберите нужный стиль из библиотеки стилей, расположенной справа на вкладке Главная верхней панели инструментов.

                      Доступны следующие стили форматирования: обычный, без интервала, заголовок 1-9, название, подзаголовок, цитата, выделенная цитата, абзац списка.

                      Стили форматирования

                      diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertAutoshapes.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertAutoshapes.htm index 5c67b6ab0..a18440082 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertAutoshapes.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertAutoshapes.htm @@ -13,7 +13,8 @@

                      Вставка автофигуры

                      Для добавления автофигуры в документ:

                        -
                      1. щелкните по значку Вставить автофигуру Значок Вставить автофигуру на верхней панели инструментов,
                      2. +
                      3. перейдите на вкладку Вставка верхней панели инструментов,
                      4. +
                      5. щелкните по значку Значок Фигура Фигура на верхней панели инструментов,
                      6. выберите одну из доступных групп автофигур: Основные фигуры, Фигурные стрелки, Математические знаки, Схемы, Звезды и ленты, Выноски, Кнопки, Прямоугольники, Линии,
                      7. щелкните по нужной автофигуре внутри выбранной группы,
                      8. установите курсор там, где требуется поместить автофигуру, @@ -26,7 +27,7 @@

                        Изменение формы автофигурыДля изменения размера автофигуры перетаскивайте маленькие квадраты Значок Квадрат, расположенные по краям автофигуры. Чтобы сохранить исходные пропорции выбранной автофигуры при изменении размера, удерживайте клавишу Shift и перетаскивайте один из угловых значков.

                        При изменении некоторых фигур, например, фигурных стрелок или выносок, также доступен желтый значок в форме ромба Значок Желтый ромб. Он позволяет изменять отдельные параметры формы, например, длину указателя стрелки.

                        Для изменения местоположения автофигуры используйте значок Стрелка, который появляется после наведения курсора мыши на автофигуру. Перетащите автофигуру на нужное место, не отпуская кнопку мыши. - При перемещении автофигуры на экране появляются направляющие, которые помогают точно расположить объект на странице (если выбран стиль обтекания, отличный от стиля "В тексте"). Чтобы перемещать автофигуру с шагом в три пикселя, удерживайте клавишу Ctrl и используйте стрелки на клавиатуре. + При перемещении автофигуры на экране появляются направляющие, которые помогают точно расположить объект на странице (если выбран стиль обтекания, отличный от стиля "В тексте"). Чтобы перемещать автофигуру с шагом в один пиксель, удерживайте клавишу Ctrl и используйте стрелки на клавиатуре. Чтобы перемещать автофигуру строго по горизонтали/вертикали и предотвратить ее смещение в перпендикулярном направлении, при перетаскивании удерживайте клавишу Shift.

                        Чтобы повернуть автофигуру, наведите курсор мыши на маркер поворота Маркер поворота и перетащите его по часовой стрелке или против часовой стрелки. Чтобы ограничить угол поворота шагом в 15 градусов, при поворачивании удерживайте клавишу Shift.


                        @@ -34,8 +35,8 @@

                        Чтобы выровнять или расположить автофигуры в определенном порядке, используйте контекстное меню. Меню содержит следующие пункты:

                        • Вырезать, копировать, вставить - стандартные опции, которые используются для вырезания или копирования выделенного текста/объекта и вставки ранее вырезанного/скопированного фрагмента текста или объекта в то место, где находится курсор.
                        • -
                        • Порядок - используется, чтобы вынести выбранную автофигуру на передний план, переместить на задний план, перенести вперед или назад, а также сгруппировать или разгруппировать автофигуры для выполнения операций над несколькими из них сразу.
                        • -
                        • Выравнивание - используется, чтобы выровнять фигуру по левому краю, по центру, по правому краю, по верхнему краю, по середине, по нижнему краю.
                        • +
                        • Порядок - используется, чтобы вынести выбранную автофигуру на передний план, переместить на задний план, перенести вперед или назад, а также сгруппировать или разгруппировать автофигуры для выполнения операций над несколькими из них сразу. Подробнее о расположении объектов в определенном порядке рассказывается на этой странице.
                        • +
                        • Выравнивание - используется, чтобы выровнять фигуру по левому краю, по центру, по правому краю, по верхнему краю, по середине, по нижнему краю. Подробнее о выравнивании объектов рассказывается на этой странице.
                        • Стиль обтекания - используется, чтобы выбрать один из доступных стилей обтекания текстом - в тексте, вокруг рамки, по контуру, сквозное, сверху и снизу, перед текстом, за текстом - или для изменения границы обтекания. Опция Изменить границу обтекания доступна только в том случае, если выбран стиль обтекания, отличный от стиля "В тексте". Чтобы произвольно изменить границу, перетаскивайте точки границы обтекания. Чтобы создать новую точку границы обтекания, щелкните в любом месте на красной линии и перетащите ее в нужную позицию. Изменение границы обтекания
                        • Дополнительные параметры фигуры - используется для вызова окна 'Фигура - Дополнительные параметры'.
                        @@ -136,8 +137,8 @@
                      9. При выборе стиля обтекания вокруг рамки, по контуру, сквозное или сверху и снизу можно задать дополнительные параметры - расстояние до текста со всех сторон (сверху, снизу, слева, справа).

                        -

                        Фигура - Дополнительные параметры

                        -

                        Вкладка Положение доступна только в том случае, если выбран стиль обтекания, отличный от стиля "В тексте". Вкладка содержит следующие параметры, которые различаются в зависимости от выбранного стиля обтекания:

                        +

                        Фигура - Дополнительные параметры

                        +

                        Вкладка Положение доступна только в том случае, если выбран стиль обтекания, отличный от стиля "В тексте". Вкладка содержит следующие параметры, которые различаются в зависимости от выбранного стиля обтекания:

                        • В разделе По горизонтали можно выбрать один из следующих трех способов позиционирования автофигуры: diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm index a85f48cd3..8fa87674e 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm @@ -14,7 +14,8 @@

                          Для вставки диаграммы в документ:

                          1. установите курсор там, где требуется поместить диаграмму,
                          2. -
                          3. щелкните по значку Вставить диаграмму Значок Вставить диаграмму на верхней панели инструментов,
                          4. +
                          5. перейдите на вкладку Вставка верхней панели инструментов,
                          6. +
                          7. щелкните по значку Значок Диаграмма Диаграмма на верхней панели инструментов,
                          8. выберите из доступных типов диаграммы тот, который вам нужен - гистограмма, график, круговая, линейчатая, с областями, точечная, биржевая,

                            Обратите внимание: для Гистограмм, Графиков, Круговых или Линейчатых диаграмм также доступен формат 3D.

                          9. @@ -287,7 +288,7 @@

                            Редактирование элементов диаграммы

                            Чтобы изменить Заголовок диаграммы, выделите мышью стандартный текст и введите вместо него свой собственный.

                            -

                            Чтобы изменить форматирование шрифта внутри текстовых элементов, таких как заголовок диаграммы, названия осей, элементы условных обозначений, подписи данных и так далее, выделите нужный текстовый элемент, щелкнув по нему левой кнопкой мыши. Затем используйте значки на верхней панели инструментов, чтобы изменить тип, размер, цвет шрифта или его стиль оформления.

                            +

                            Чтобы изменить форматирование шрифта внутри текстовых элементов, таких как заголовок диаграммы, названия осей, элементы условных обозначений, подписи данных и так далее, выделите нужный текстовый элемент, щелкнув по нему левой кнопкой мыши. Затем используйте значки на вкладке Главная верхней панели инструментов, чтобы изменить тип, размер, цвет шрифта или его стиль оформления.

                            Чтобы удалить элемент диаграммы, выделите его, щелкнув левой кнопкой мыши, и нажмите клавишу Delete на клавиатуре.

                            Можно также поворачивать 3D-диаграммы с помощью мыши. Щелкните левой кнопкой мыши внутри области построения диаграммы и удерживайте кнопку мыши до появления голубой пунктирной рамки. Не отпуская кнопку мыши, перетащите курсор, чтобы изменить ориентацию 3D-диаграммы.

                            3D-диаграмма

                            @@ -310,8 +311,8 @@

                            Некоторые из этих опций можно также найти в контекстном меню. Меню содержит следующие пункты:

                            • Вырезать, копировать, вставить - стандартные опции, которые используются для вырезания или копирования выделенного текста/объекта и вставки ранее вырезанного/скопированного фрагмента текста или объекта в то место, где находится курсор.
                            • -
                            • Порядок - используется, чтобы вынести выбранную диаграмму на передний план, переместить на задний план, перенести вперед или назад, а также сгруппировать или разгруппировать диаграммы для выполнения операций над несколькими из них сразу.
                            • -
                            • Выравнивание - используется, чтобы выровнять диаграмму по левому краю, по центру, по правому краю, по верхнему краю, по середине, по нижнему краю.
                            • +
                            • Порядок - используется, чтобы вынести выбранную диаграмму на передний план, переместить на задний план, перенести вперед или назад, а также сгруппировать или разгруппировать диаграммы для выполнения операций над несколькими из них сразу. Подробнее о расположении объектов в определенном порядке рассказывается на этой странице.
                            • +
                            • Выравнивание - используется, чтобы выровнять диаграмму по левому краю, по центру, по правому краю, по верхнему краю, по середине, по нижнему краю. Подробнее о выравнивании объектов рассказывается на этой странице.
                            • Стиль обтекания - используется, чтобы выбрать один из доступных стилей обтекания текстом - в тексте, вокруг рамки, по контуру, сквозное, сверху и снизу, перед текстом, за текстом. Опция Изменить границу обтекания для диаграмм недоступна.
                            • Изменить данные - используется для вызова окна 'Редактор диаграмм'.
                            • Дополнительные параметры диаграммы - используется для вызова окна 'Диаграмма - Дополнительные параметры'.
                            • @@ -347,8 +348,8 @@

                            При выборе стиля обтекания вокруг рамки, по контуру, сквозное или сверху и снизу можно задать дополнительные параметры - расстояние до текста со всех сторон (сверху, снизу, слева, справа).

                            -

                            Диаграмма - Дополнительные параметры: Положение

                            -

                            Вкладка Положение доступна только в том случае, если выбран стиль обтекания, отличный от стиля "В тексте". Вкладка содержит следующие параметры, которые различаются в зависимости от выбранного стиля обтекания:

                            +

                            Диаграмма - Дополнительные параметры: Положение

                            +

                            Вкладка Положение доступна только в том случае, если выбран стиль обтекания, отличный от стиля "В тексте". Вкладка содержит следующие параметры, которые различаются в зависимости от выбранного стиля обтекания:

                            • В разделе По горизонтали можно выбрать один из следующих трех способов позиционирования диаграммы: diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertDropCap.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertDropCap.htm index 1be30703a..f87eae54e 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertDropCap.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertDropCap.htm @@ -13,7 +13,8 @@

                              Для добавления буквицы:

                              1. установите курсор в пределах нужного абзаца,
                              2. -
                              3. нажмите на значок Вставить буквицу Значок Вставить буквицу на верхней панели инструментов,
                              4. +
                              5. перейдите на вкладку Вставка верхней панели инструментов,
                              6. +
                              7. нажмите на значок Значок Буквица Буквица на верхней панели инструментов,
                              8. в открывшемся выпадающем списке выберите нужную опцию:
                                • В тексте Вставка буквицы - В тексте - чтобы поместить буквицу внутри абзаца.
                                • @@ -22,11 +23,11 @@

                              Пример буквицыПервый символ выбранного абзаца будет преобразован в буквицу. Если требуется, чтобы буквица включала в себя еще несколько символов, добавьте их вручную: выделите буквицу и впишите нужные буквы.

                              -

                              Чтобы изменить вид буквицы (то есть размер, тип, стиль оформления или цвет шрифта), выделите букву и используйте соответствующие значки на верхней панели инструментов.

                              +

                              Чтобы изменить вид буквицы (то есть размер, тип, стиль оформления или цвет шрифта), выделите букву и используйте соответствующие значки на вкладке Главная верхней панели инструментов.

                              Когда буквица выделена, она окружена рамкой (рамка - это контейнер, который используется для позиционирования буквицы на странице). Можно быстро изменить размер рамки путем перетаскивания ее границ или изменить ее положение с помощью значка Стрелка, который появляется после наведения курсора мыши на рамку.

                              -

                              Чтобы удалить добавленную буквицу, выделите ее, нажмите на значок Вставить буквицу Значок Вставить буквицу на верхней панели инструментов и выберите из выпадающего списка опцию Нет Вставить буквицу - Нет.

                              +

                              Чтобы удалить добавленную буквицу, выделите ее, нажмите на значок Значок Буквица Буквица на вкладке Вставка верхней панели инструментов и выберите из выпадающего списка опцию Нет Вставить буквицу - Нет.


                              -

                              Чтобы настроить параметры добавленной буквицы, выделите ее, нажмите на значок Вставить буквицу Значок Вставить буквицу на верхней панели инструментов и выберите из выпадающего списка опцию Параметры буквицы. Откроется окно Буквица - дополнительные параметры:

                              +

                              Чтобы настроить параметры добавленной буквицы, выделите ее, нажмите на значок Значок Буквица Буквица на вкладке Вставка верхней панели инструментов и выберите из выпадающего списка опцию Параметры буквицы. Откроется окно Буквица - дополнительные параметры:

                              Буквица - дополнительные параметры

                              На вкладке Буквица можно задать следующие параметры:

                                diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm index f1383a1af..d3b03357b 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm @@ -14,11 +14,12 @@

                                Чтобы вставить формулу из коллекции,

                                1. установите курсор на нужной строке,
                                2. -
                                3. нажмите на стрелку рядом со значком Вставить формулу Значок Вставить формулу на верхней панели инструментов,
                                4. +
                                5. перейдите на вкладку Вставка верхней панели инструментов,
                                6. +
                                7. нажмите на стрелку рядом со значком Значок Формула Формула на верхней панели инструментов,
                                8. в открывшемся выпадающем списке выберите нужную категорию формул. В настоящее время доступны следующие категории: Символы, Дроби, Индексы, Радикалы, Интегралы, Крупные операторы, Скобки, Функции, Диакритические знаки, Пределы и логарифмы, Операторы, Матрицы,
                                9. щелкните по определенному символу/формуле в соответствующем наборе шаблонов.
                                -

                                Выбранный символ или формула будут вставлены в позиции курсора. Если выбранная строка пуста, формула будет выровнена по центру. Чтобы выровнять такую формулу по левому или правому краю, щелкните по рамке формулы и используйте значки Значок Выравнивание по левому краю или Значок Выравнивание по правому краю на верхней панели инструментов.

                                +

                                Выбранный символ или формула будут вставлены в позиции курсора. Если выбранная строка пуста, формула будет выровнена по центру. Чтобы выровнять такую формулу по левому или правому краю, щелкните по рамке формулы и используйте значки Значок Выравнивание по левому краю или Значок Выравнивание по правому краю на вкладке Главная верхней панели инструментов.

                                Вставленная формула

                                Каждый шаблон формулы представляет собой совокупность слотов. Слот - это позиция для каждого элемента, образующего формулу. Пустой слот, также называемый полем для заполнения, имеет пунктирный контур Местозаполнитель формулы. Необходимо заполнить все поля, указав нужные значения.

                                Примечание: чтобы начать создание формулы, можно также использовать сочетание клавиш Alt + =.

                                @@ -30,7 +31,7 @@ Когда курсор будет установлен в нужную позицию, можно заполнить поле:
                                • введите требуемое цифровое или буквенное значение с помощью клавиатуры,
                                • -
                                • вставьте специальный символ, используя палитру Символы из меню Вставить формулу Значок Вставить формулу на верхней панели инструментов,
                                • +
                                • вставьте специальный символ, используя палитру Символы из меню Значок Формула Формула на вкладке Вставка верхней панели инструментов,
                                • добавьте шаблон другой формулы с палитры, чтобы создать сложную вложенную формулу. Размер начальной формулы будет автоматически изменен в соответствии с содержимым. Размер элементов вложенной формулы зависит от размера поля начальной формулы, но не может быть меньше, чем размер мелкого индекса.

                                @@ -45,8 +46,8 @@

                                При вводе значений математических выражений не требуется использовать клавишу Пробел, так как пробелы между символами и знаками действий устанавливаются автоматически.

                                Если формула слишком длинная и не помещается на одной строке, перенос на другую строку в процессе ввода осуществляется автоматически. Можно также вставить перенос строки в строго определенном месте, щелкнув правой кнопкой мыши по математическому оператору и выбрав из контекстного меню пункт Вставить принудительный разрыв. Выбранный оператор будет перенесен на новую строку. После добавления принудительного разрыва строки можно использовать клавишу Tab, чтобы выровнять новую строку по какому-либо математическому знаку из предыдущей строки. Чтобы удалить добавленный принудительный разрыв строки, щелкните правой кнопкой мыши по математическому оператору в начале новой строки и выберите пункт меню Удалить принудительный разрыв.

                                Форматирование формул

                                -

                                Чтобы увеличить или уменьшить размер шрифта в формуле, щелкните мышью внутри рамки формулы и используйте кнопки Увеличить размер шрифта и Уменьшить размер шрифта на верхней панели инструментов или выберите нужный размер шрифта из списка. Все элементы формулы изменятся соответственно.

                                -

                                По умолчанию буквы в формуле форматируются курсивом. В случае необходимости можно изменить стиль шрифта (выделение жирным, курсив, зачеркивание) или цвет для всей формулы или ее части. Подчеркивание можно применить только ко всей формуле, а не к отдельным символам. Выделите нужную часть формулы путем перетаскивания. Выделенная часть будет подсвечена голубым цветом. Затем используйте нужные кнопки на верхней панели инструментов, чтобы отформатировать выделенный фрагмент. Например, можно убрать форматирование курсивом для обычных слов, которые не являются переменными или константами.

                                +

                                Чтобы увеличить или уменьшить размер шрифта в формуле, щелкните мышью внутри рамки формулы и используйте кнопки Увеличить размер шрифта и Уменьшить размер шрифта на вкладке Главная верхней панели инструментов или выберите нужный размер шрифта из списка. Все элементы формулы изменятся соответственно.

                                +

                                По умолчанию буквы в формуле форматируются курсивом. В случае необходимости можно изменить стиль шрифта (выделение жирным, курсив, зачеркивание) или цвет для всей формулы или ее части. Подчеркивание можно применить только ко всей формуле, а не к отдельным символам. Выделите нужную часть формулы путем перетаскивания. Выделенная часть будет подсвечена голубым цветом. Затем используйте нужные кнопки на вкладке Главная верхней панели инструментов, чтобы отформатировать выделенный фрагмент. Например, можно убрать форматирование курсивом для обычных слов, которые не являются переменными или константами.

                                Редактируемая формула

                                Для изменения некоторых элементов формул можно также использовать пункты контекстного меню:

                                  diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertFootnotes.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertFootnotes.htm index 622ae916a..22114e7bc 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertFootnotes.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertFootnotes.htm @@ -14,8 +14,9 @@

                                  Чтобы вставить сноску в документ:

                                  1. установите курсор в конце фрагмента текста, к которому надо добавить сноску,
                                  2. -
                                  3. нажмите на значок Сноски Значок Сноски на верхней панели инструментов или
                                    - нажмите на стрелку рядом со значком Сноски Значок Сноски и выберите в меню опцию Вставить сноску, +
                                  4. перейдите на вкладку Вставка верхней панели инструментов,
                                  5. +
                                  6. нажмите на значок Значок Сноска Сноска на верхней панели инструментов или
                                    + нажмите на стрелку рядом со значком Значок Сноска Сноска и выберите в меню опцию Вставить сноску,

                                    В тексте документа появится знак сноски (то есть надстрочный знак, обозначающий сноску), а курсор переместится в нижнюю часть текущей страницы.

                                  7. введите текст сноски.
                                  8. @@ -26,13 +27,13 @@

                                    Текст сноски

                                    Чтобы легко переходить между добавленными сносками в тексте документа:

                                      -
                                    1. нажмите на стрелку рядом со значком Сноски Значок Сноски,
                                    2. +
                                    3. нажмите на стрелку рядом со значком Значок Сноска Сноска на вкладке Вставка верхней панели инструментов,
                                    4. в разделе Перейти к сноскам используйте стрелку Значок Предыдущая сноска для перехода к предыдущей сноске или стрелку Значок Следующая сноска для перехода к следующей сноске.

                                    Чтобы изменить параметры сносок:

                                      -
                                    1. нажмите на стрелку рядом со значком Сноски Значок Сноски на верхней панели инструментов,
                                    2. +
                                    3. нажмите на стрелку рядом со значком Значок Сноска Сноска на вкладке Вставка верхней панели инструментов,
                                    4. выберите в меню опцию Параметры сносок,
                                    5. измените текущие параметры в открывшемся окне Параметры сносок:

                                      Окно параметры сносок

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

                                      Чтобы удалить отдельную сноску, установите курсор непосредственно перед знаком сноски в тексте документа и нажмите клавишу Delete. Нумерация оставшихся сносок изменится автоматически.

                                      Чтобы удалить все сноски в документе:

                                        -
                                      1. нажмите на стрелку рядом со значком Сноски Значок Сноски на верхней панели инструментов,
                                      2. +
                                      3. нажмите на стрелку рядом со значком Значок Сноска Сноска на вкладке Вставка верхней панели инструментов,
                                      4. выберите в меню опцию Удалить все сноски.
                                      diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertHeadersFooters.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertHeadersFooters.htm index c14a11ea3..6842064a8 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertHeadersFooters.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertHeadersFooters.htm @@ -12,7 +12,8 @@

                                      Вставка колонтитулов

                                      Чтобы добавить в документ верхний или нижний колонтитулы или изменить существующие,

                                        -
                                      1. нажмите значок Изменить колонтитулы Значок Изменить колонтитулы на верхней панели инструментов,
                                      2. +
                                      3. перейдите на вкладку Вставка верхней панели инструментов,
                                      4. +
                                      5. нажмите значок Значок Колонтитулы Колонтитулы на верхней панели инструментов,
                                      6. выберите одну из следующих опций:
                                          diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertImages.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertImages.htm index f1dc50917..51d149682 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertImages.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertImages.htm @@ -9,12 +9,13 @@

                                          Вставка изображений

                                          +

                                          В редакторе документов можно вставлять в документ изображения самых популярных форматов. Поддерживаются следующие форматы изображений: BMP, GIF, JPEG, JPG, PNG.

                                          Вставка изображения

                                          -

                                          В онлайн-редакторе документов можно вставлять в документ изображения самых популярных форматов. Поддерживаются следующие форматы изображений: BMP, GIF, JPEG, JPG, PNG.

                                          -

                                          Для вставки изображения в текст документа:

                                          +

                                          Для вставки изображения в текст документа:

                                          1. установите курсор там, где требуется поместить изображение,
                                          2. -
                                          3. нажмите значок Вставить изображение Значок Вставить изображение на верхней панели инструментов,
                                          4. +
                                          5. перейдите на вкладку Вставка верхней панели инструментов,
                                          6. +
                                          7. нажмите значок Значок Изображение Изображение на верхней панели инструментов,
                                          8. для загрузки изображения выберите одну из следующих опций:
                                            • при выборе опции Изображение из файла откроется стандартное диалоговое окно Windows для выбора файлов. Выберите нужный файл на жестком диске компьютера и нажмите кнопку Открыть
                                            • @@ -40,8 +41,8 @@

                                              Некоторые из этих опций можно также найти в контекстном меню. Меню содержит следующие пункты:

                                              • Вырезать, копировать, вставить - стандартные опции, которые используются для вырезания или копирования выделенного текста/объекта и вставки ранее вырезанного/скопированного фрагмента текста или объекта в то место, где находится курсор.
                                              • -
                                              • Порядок - используется, чтобы вынести выбранное изображение на передний план, переместить на задний план, перенести вперед или назад, а также сгруппировать или разгруппировать изображения для выполнения операций над несколькими из них сразу.
                                              • -
                                              • Выравнивание - используется, чтобы выровнять изображение по левому краю, по центру, по правому краю, по верхнему краю, по середине, по нижнему краю.
                                              • +
                                              • Порядок - используется, чтобы вынести выбранное изображение на передний план, переместить на задний план, перенести вперед или назад, а также сгруппировать или разгруппировать изображения для выполнения операций над несколькими из них сразу. Подробнее о расположении объектов в определенном порядке рассказывается на этой странице.
                                              • +
                                              • Выравнивание - используется, чтобы выровнять изображение по левому краю, по центру, по правому краю, по верхнему краю, по середине, по нижнему краю. Подробнее о выравнивании объектов рассказывается на этой странице.
                                              • Стиль обтекания - используется, чтобы выбрать один из доступных стилей обтекания текстом - в тексте, вокруг рамки, по контуру, сквозное, сверху и снизу, перед текстом, за текстом - или для изменения границы обтекания. Опция Изменить границу обтекания доступна только в том случае, если выбран стиль обтекания, отличный от стиля "В тексте". Чтобы произвольно изменить границу, перетаскивайте точки границы обтекания. Чтобы создать новую точку границы обтекания, щелкните в любом месте на красной линии и перетащите ее в нужную позицию. Изменение границы обтекания
                                              • Размер по умолчанию - используется для смены текущего размера изображения на размер по умолчанию.
                                              • Дополнительные параметры изображения - используется для вызова окна 'Изображение - Дополнительные параметры'.
                                              • @@ -71,8 +72,8 @@

                                              При выборе стиля обтекания вокруг рамки, по контуру, сквозное или сверху и снизу можно задать дополнительные параметры - расстояние до текста со всех сторон (сверху, снизу, слева, справа).

                                              -

                                              Изображение - Дополнительные параметры: Положение

                                              -

                                              Вкладка Положение доступна только в том случае, если выбран стиль обтекания, отличный от стиля "В тексте". Вкладка содержит следующие параметры, которые различаются в зависимости от выбранного стиля обтекания:

                                              +

                                              Изображение - Дополнительные параметры: Положение

                                              +

                                              Вкладка Положение доступна только в том случае, если выбран стиль обтекания, отличный от стиля "В тексте". Вкладка содержит следующие параметры, которые различаются в зависимости от выбранного стиля обтекания:

                                              • В разделе По горизонтали можно выбрать один из следующих трех способов позиционирования изображения:
                                                  diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertPageNumbers.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertPageNumbers.htm index 12e7ff1a7..2c1738772 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertPageNumbers.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertPageNumbers.htm @@ -12,7 +12,8 @@

                                                  Вставка номеров страниц

                                                  Для вставки в документ номеров страниц:

                                                    -
                                                  1. нажмите значок Изменить колонтитулы Значок Изменить колонтитулы на верхней панели инструментов,
                                                  2. +
                                                  3. перейдите на вкладку Вставка верхней панели инструментов,
                                                  4. +
                                                  5. нажмите значок Значок Колонтитулы Колонтитулы на верхней панели инструментов,
                                                  6. выберите подменю Вставить номер страницы
                                                  7. выберите одну из следующих опций:
                                                      @@ -24,7 +25,7 @@

                                                      Для вставки общего числа страниц в документе (например, если вы хотите создать запись вида "Страница X из Y"):

                                                      1. установите курсор там, где требуется вставить общее число страниц,
                                                      2. -
                                                      3. нажмите значок Изменить колонтитулы Значок Изменить колонтитулы на верхней панели инструментов,
                                                      4. +
                                                      5. нажмите значок Значок Колонтитулы Колонтитулы на верхней панели инструментов,
                                                      6. выберите опцию Вставить число страниц.

                                                      diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertTables.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertTables.htm index 612dd094e..08db56c32 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertTables.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertTables.htm @@ -13,7 +13,8 @@

                                                      Для вставки таблицы в текст документа:

                                                      1. установите курсор там, где надо разместить таблицу,
                                                      2. -
                                                      3. нажмите значок Вставить таблицу Значок Вставить таблицу на верхней панели инструментов,
                                                      4. +
                                                      5. перейдите на вкладку Вставка верхней панели инструментов,
                                                      6. +
                                                      7. нажмите значок Значок Таблица Таблица на верхней панели инструментов,
                                                      8. выберите опцию для создания таблицы:
                                                        • или таблица со стандартным количеством ячеек (максимум 10 на 8 ячеек)

                                                          @@ -123,13 +124,13 @@ Параметры границы (ширина, цвет и наличие или отсутствие) - задайте ширину границ, выберите их цвет и то, как они должны отображаться в ячейках.

                                                          Примечание: если вы решили скрыть границы таблицы, нажав кнопку Без границ или отключив все границы вручную на схеме, в документе они будут обозначены пунктиром. - Чтобы они совсем исчезли, нажмите значок Непечатаемые символы Непечатаемые символы на верхней панели инструментов и выберите опцию Скрытые границы таблиц. + Чтобы они совсем исчезли, нажмите значок Непечатаемые символы Непечатаемые символы на вкладке Главная верхней панели инструментов и выберите опцию Скрытые границы таблиц.

                                                        • Фон ячейки - цвет фона внутри ячейки (опция доступна только в том случае, если выделены одна или более ячеек или выбрана опция Интервалы между ячейками на вкладке Таблица).
                                                        • Фон таблицы - цвет фона таблицы или фона пространства между ячейками в том случае, если выбрана опция Интервалы между ячейками на вкладке Таблица.
                                                        -

                                                        Таблица - Дополнительные параметры

                                                        +

                                                        Таблица - Дополнительные параметры

                                                        Вкладка Положение таблицы доступна только в том случае, если на вкладке Обтекание текстом выбран Плавающий стиль обтекания, и содержит следующие параметры:

                                                        • Параметры раздела По горизонтали включают в себя выравнивание таблицы (по левому краю, по центру, по правому краю) относительно поля, страницы или текста, а также положение таблицы справа от поля, страницы или текста.
                                                        • diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertTextObjects.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertTextObjects.htm index b0db80bd4..fee1bbe5e 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertTextObjects.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/InsertTextObjects.htm @@ -14,13 +14,13 @@

                                                          Добавление текстового объекта

                                                          Текстовый объект можно добавить в любом месте страницы. Для этого:

                                                            -
                                                          1. щелкните по значку Вставить текст Значок Вставить текст на верхней панели инструментов,
                                                          2. +
                                                          3. перейдите на вкладку Вставка верхней панели инструментов,
                                                          4. выберите нужный тип текстового объекта:
                                                              -
                                                            • выберите в меню опцию Вставить надпись, затем щелкните там, где требуется поместить надпись, удерживайте кнопку мыши и перетаскивайте границу текстового поля, чтобы задать его размер. Когда вы отпустите кнопку мыши, в добавленном текстовом поле появится курсор, и вы сможете ввести свой текст. -

                                                              Примечание: надпись можно также вставить, если щелкнуть по значку Вставить автофигуру Значок Вставить автофигуру на верхней панели инструментов и выбрать фигуру Автофигура Вставка текста из группы Основные фигуры.

                                                              +
                                                            • чтобы добавить текстовое поле, щелкните по значку Значок Текст Текст на верхней панели инструментов, затем щелкните там, где требуется поместить надпись, удерживайте кнопку мыши и перетаскивайте границу текстового поля, чтобы задать его размер. Когда вы отпустите кнопку мыши, в добавленном текстовом поле появится курсор, и вы сможете ввести свой текст. +

                                                              Примечание: надпись можно также вставить, если щелкнуть по значку Значок Фигура Фигура на верхней панели инструментов и выбрать фигуру Автофигура Вставка текста из группы Основные фигуры.

                                                            • -
                                                            • выберите в меню опцию Вставить объект Text Art, затем щелкните по нужному шаблону стиля – объект Text Art будет добавлен в текущей позиции курсора. Выделите мышью стандартный текст внутри текстового поля и напишите вместо него свой текст.
                                                            • +
                                                            • чтобы добавить объект Text Art, щелкните по значку Значок Text Art Text Art, затем щелкните по нужному шаблону стиля – объект Text Art будет добавлен в текущей позиции курсора. Выделите мышью стандартный текст внутри текстового поля и напишите вместо него свой текст.
                                                          5. щелкните за пределами текстового объекта, чтобы применить изменения и вернуться к документу.
                                                          6. @@ -34,7 +34,7 @@
                                                            • чтобы изменить размер текстового поля, переместить, повернуть его, используйте специальные маркеры по краям фигуры.
                                                            • чтобы изменить заливку, обводку, стиль обтекания текстового поля или заменить прямоугольное поле на какую-то другую фигуру, щелкните по значку Параметры фигуры Значок Параметры фигуры на правой боковой панели и используйте соответствующие опции.
                                                            • -
                                                            • чтобы выровнять текстовое поле на странице, расположить текстовые поля в определенном порядке относительно других объектов, изменить стиль обтекания или открыть дополнительные параметры фигуры, щелкните правой кнопкой мыши по границе текстового поля и используйте опции контекстного меню.
                                                            • +
                                                            • чтобы выровнять текстовое поле на странице, расположить текстовые поля в определенном порядке относительно других объектов, изменить стиль обтекания или открыть дополнительные параметры фигуры, щелкните правой кнопкой мыши по границе текстового поля и используйте опции контекстного меню. Подробнее о выравнивании и расположении объектов в определенном порядке рассказывается на этой странице.

                                                            Форматирование текста внутри текстового поля

                                                            Щелкните по тексту внутри текстового поля, чтобы можно было изменить его свойства. Когда текст выделен, границы текстового поля отображаются как пунктирные линии.

                                                            @@ -49,10 +49,10 @@
                                                          7. задать междустрочный интервал, изменить отступы абзаца, настроить позиции табуляции для многострочного текста внутри текстового поля
                                                          8. вставить гиперссылку
                                                        -

                                                        Можно также нажать на значок Параметры объектов Text Art Значок Параметры объектов Text Art на правой боковой панели и изменить некоторые параметры стиля.

                                                        +

                                                        Можно также нажать на значок Параметры объекта Text Art Значок Параметры объекта Text Art на правой боковой панели и изменить некоторые параметры стиля.

                                                        Изменение стиля объекта Text Art

                                                        -

                                                        Выделите текстовый объект и щелкните по значку Параметры объектов Text Art Значок Параметры объектов Text Art на правой боковой панели.

                                                        -

                                                        Вкладка Параметры объектов Text Art

                                                        +

                                                        Выделите текстовый объект и щелкните по значку Параметры объекта Text Art Значок Параметры объекта Text Art на правой боковой панели.

                                                        +

                                                        Вкладка Параметры объекта Text Art

                                                        Измените примененный стиль текста, выбрав из галереи новый Шаблон. Можно также дополнительно изменить этот базовый стиль, выбрав другой тип, размер шрифта и т.д.

                                                        Измените Заливку шрифта. Можно выбрать следующие варианты:

                                                          diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/LineSpacing.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/LineSpacing.htm index 8feac1554..97fae700b 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/LineSpacing.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/LineSpacing.htm @@ -9,7 +9,7 @@

                                                          Задание междустрочного интервала в абзацах

                                                          -

                                                          В онлайн-редакторе документов можно задать высоту строки для строк текста в абзаце, а также поля между текущим и предыдущим или последующим абзацем.

                                                          +

                                                          В редакторе документов можно задать высоту строки для строк текста в абзаце, а также поля между текущим и предыдущим или последующим абзацем.

                                                          Для этого:

                                                          1. установите курсор в пределах нужного абзаца или выделите мышью несколько абзацев или весь текст документа, нажав сочетание клавиш Ctrl+A,
                                                          2. @@ -29,7 +29,7 @@
                                                      -

                                                      Чтобы быстро изменить междустрочный интервал в текущем абзаце, можно также использовать значок Междустрочный интервал в абзацах Междустрочный интервал в абзацах на верхней панели инструментов, выбрав нужное значение из списка: 1.0, 1.15, 1.5, 2.0, 2.5, или 3.0 строки.

                                                      +

                                                      Чтобы быстро изменить междустрочный интервал в текущем абзаце, можно также использовать значок Междустрочный интервал в абзацах Междустрочный интервал в абзацах на вкладке Главная верхней панели инструментов, выбрав нужное значение из списка: 1.0, 1.15, 1.5, 2.0, 2.5, или 3.0 строки.

                                          \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/NonprintingCharacters.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/NonprintingCharacters.htm index 2326ac40e..3c98836e4 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/NonprintingCharacters.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/NonprintingCharacters.htm @@ -10,7 +10,7 @@

                                          Отображение/скрытие непечатаемых символов

                                          Непечатаемые символы помогают редактировать документ. Они обозначают присутствие разных типов форматирования, но не выводятся на печать при печати документа, даже если отображаются на экране.

                                          -

                                          Чтобы показать или скрыть непечатаемые символы, нажмите значок Непечатаемые символы Непечатаемые символы на верхней панели инструментов.

                                          +

                                          Чтобы показать или скрыть непечатаемые символы, нажмите значок Непечатаемые символы Непечатаемые символы на вкладке Главная верхней панели инструментов.

                                          Непечатаемые символы включают в себя:

                      Название шрифтаНазвание шрифтаШрифтШрифт Используется для выбора шрифта из списка доступных.
                      @@ -41,7 +41,7 @@ - + @@ -49,13 +49,13 @@ Разрыв раздела - + diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm index aaab93492..691344e02 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm @@ -12,16 +12,17 @@

                      После того как вы закончите работу над одним документом, можно сразу же перейти к уже существующему документу, который вы недавно редактировали, создать новый, или вернуться к списку существующих документов.

                      Чтобы создать новый документ,

                        -
                      1. нажмите значок Файл Значок Файл на левой боковой панели,
                      2. +
                      3. нажмите на вкладку Файл на верхней панели инструментов,
                      4. выберите опцию Создать новый....
                      -

                      Чтобы открыть документ, который вы недавно редактировали в онлайн-редакторе документов,

                      +

                      Чтобы открыть документ, который вы недавно редактировали в редакторе документов,

                        -
                      1. нажмите значок Файл Значок Файл на левой боковой панели,
                      2. +
                      3. нажмите на вкладку Файл на верхней панели инструментов,
                      4. выберите опцию Открыть последние...,
                      5. выберите нужный документ из списка недавно измененных документов.
                      -

                      Чтобы вернуться к списку существующих документов, нажмите на ссылку Перейти к Документам в правом верхнем углу или на значок Файл Значок Файл на левой боковой панели и выберите опцию Перейти к Документам.

                      +

                      Чтобы вернуться к списку существующих документов, нажмите на значок Перейти к Документам Перейти к Документам в правой части шапки редактора. Можно также перейти на вкладку Файл на верхней панели инструментов и выбрать опцию Перейти к Документам.

                      + \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/PageBreaks.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/PageBreaks.htm index 3a5c20cd3..0e3421ee4 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/PageBreaks.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/PageBreaks.htm @@ -9,8 +9,8 @@

                      Вставка разрывов страниц

                      -

                      В онлайн-редакторе документов можно добавить разрыв страницы, чтобы начать новую страницу, а также настроить параметры разбивки на страницы.

                      -

                      Чтобы вставить разрыв страницы в текущей позиции курсора, нажмите значок Вставить разрыв страницы или раздела Вставить разрыв страницы или раздела на верхней панели инструментов или +

                      В редакторе документов можно добавить разрыв страницы, чтобы начать новую страницу, а также настроить параметры разбивки на страницы.

                      +

                      Чтобы вставить разрыв страницы в текущей позиции курсора, нажмите значок Разрыв страницы Разрывы на вкладке Вставка или Макет верхней панели инструментов или щелкните по направленной вниз стрелке этого значка и выберите из меню опцию Вставить разрыв страницы.

                      Чтобы вставить разрыв страницы перед выбранным абзацем, то есть начать этот абзац в верхней части новой страницы:

                        diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/ParagraphIndents.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/ParagraphIndents.htm index 6e89fedd5..52a0f32d9 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/ParagraphIndents.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/ParagraphIndents.htm @@ -9,7 +9,7 @@

                        Изменение отступов абзацев

                        -

                        В онлайн-редакторе документов можно изменить смещение первой строки абзаца от левого поля страницы, а также смещение всего абзаца от правого и левого полей страницы.

                        +

                        В редакторе документов можно изменить смещение первой строки абзаца от левого поля страницы, а также смещение всего абзаца от правого и левого полей страницы.

                        Для этого:

                        1. установите курсор в пределах нужного абзаца, или выделите мышью несколько абзацев, или весь текст документа, нажав сочетание клавиш Ctrl+A,
                        2. @@ -19,7 +19,7 @@

                          Дополнительные параметры абзаца - Отступы и положение

                        -

                        Чтобы быстро изменить смещение абзаца от левого поля страницы, можно также использовать соответствующие значки на верхней панели инструментов: Уменьшить отступ Уменьшить отступ и Увеличить отступ Увеличить отступ.

                        +

                        Чтобы быстро изменить смещение абзаца от левого поля страницы, можно также использовать соответствующие значки на вкладке Главная верхней панели инструментов: Уменьшить отступ Уменьшить отступ и Увеличить отступ Увеличить отступ.

                        Чтобы задать отступы, можно также использовать горизонтальную линейку.

                        Линейка - маркеры отступов

                        Выделите нужный абзац или абзацы и перетащите маркеры отступов по линейке.

                        diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm index 5f58149a5..94371bfb9 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm @@ -15,12 +15,12 @@
                        • нажмите значок Сохранить Значок Сохранить на верхней панели инструментов, или
                        • используйте сочетание клавиш Ctrl+S, или
                        • -
                        • нажмите значок Файл Значок Файл на левой боковой панели и выберите опцию Сохранить.
                        • +
                        • нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Сохранить.

                        Чтобы скачать готовый документ и сохранить его на жестком диске компьютера,

                          -
                        1. нажмите значок Файл Значок Файл на левой боковой панели,
                        2. +
                        3. нажмите на вкладку Файл на верхней панели инструментов,
                        4. выберите опцию Скачать как...,
                        5. выберите один из доступных форматов в зависимости от того, что вам нужно: PDF, TXT, DOCX, ODT, HTML.
                        @@ -29,7 +29,7 @@
                        • нажмите значок Печать Значок Печать на верхней панели инструментов, или
                        • используйте сочетание клавиш Ctrl+P, или
                        • -
                        • нажмите значок Файл Значок Файл на левой боковой панели и выберите опцию Печать.
                        • +
                        • нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Печать.

                        После этого на основе данного документа будет сгенерирован файл PDF. Вы можете открыть и распечатать его, или сохранить его на жестком диске компьютера или съемном носителе чтобы распечатать позже.

                        diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/SectionBreaks.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/SectionBreaks.htm index 7d797e127..b19320473 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/SectionBreaks.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/SectionBreaks.htm @@ -17,7 +17,7 @@

                        Примечание: вставленный разрыв раздела определяет форматирование предшествующей части документа.

                        Для вставки разрыва раздела в то место, где находится курсор:

                          -
                        1. щелкните по значку Вставить разрыв страницы или раздела Вставить разрыв страницы или раздела на верхней панели инструментов
                        2. +
                        3. щелкните по значку Разрыв страницы Разрывы на вкладке Вставка или Макет верхней панели инструментов
                        4. выберите подменю Вставить разрыв раздела
                        5. выберите нужный тип разрыва раздела:
                            @@ -29,7 +29,7 @@

                        Добавленные разрывы раздела обозначаются в документе двойной пунктирной линией: Разрыв раздела

                        -

                        Если вы не видите вставленных разрывов раздела, для их отображения нужно нажать на кнопку Значок Непечатаемые символы на верхней панели инструментов.

                        +

                        Если вы не видите вставленных разрывов раздела, для их отображения нужно нажать на кнопку Значок Непечатаемые символы на вкладке Главная верхней панели инструментов.

                        Для того чтобы убрать разрыв раздела, выделите его мышкой и нажмите клавишу Delete. Поскольку разрыв раздела определяет форматирование предшествующего раздела документа, при удалении разрыва раздела будет удалено и форматирование этого раздела. Та часть документа, которая предшествует удаленному разрыву раздела, приобретает форматирование следующей за ней части.

                        diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/SetPageParameters.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/SetPageParameters.htm index 3cc96ce75..2da4674c2 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/SetPageParameters.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/SetPageParameters.htm @@ -10,12 +10,12 @@

                        Задание параметров страницы

                        -

                        Чтобы изменить разметку страницы, а именно задать ориентацию и размер страницы, настроить поля и вставить колонки, используйте соответствующие значки на верхней панели инструментов.

                        +

                        Чтобы изменить разметку страницы, а именно задать ориентацию и размер страницы, настроить поля и вставить колонки, используйте соответствующие значки на вкладке Макет верхней панели инструментов.

                        Примечание: все эти параметры применяются ко всему документу. Если вам нужно установить разные поля, ориентацию, размер страниц или количество колонок в разных частях документа, обратитесь к этой странице.

                        Ориентация страницы

                        -

                        Измените текущий тип ориентации, нажав на значок Ориентация страницы Значок Ориентация страницы. По умолчанию используется Портретный тип ориентации, который можно переключить на Альбомный.

                        +

                        Измените текущий тип ориентации, нажав на значок Значок Ориентация Ориентация. По умолчанию используется Портретный тип ориентации, который можно переключить на Альбомный.

                        Размер страницы

                        -

                        Измените используемый по умолчанию формат A4, нажав на значок Размер страницы Значок Размер страницы и выбрав нужный из списка. Доступны следующие предустановленные размеры:

                        +

                        Измените используемый по умолчанию формат A4, нажав на значок Значок Размер Размер и выбрав нужный из списка. Доступны следующие предустановленные размеры:

                        • US Letter (21,59 см x 27,94 см)
                        • US Legal (21,59 см x 35,56 см)
                        • @@ -34,12 +34,12 @@

                          Можно также задать нестандартный размер страницы, выбрав из списка опцию Особый размер страницы. Откроется окно Размер страницы, в котором можно будет указать нужные значения Ширины и Высоты. Введите новые значения в поля ввода или скорректируйте имеющиеся значения с помощью кнопок со стрелками. Когда все будет готово, нажмите кнопку OK, чтобы применить изменения.

                          Особый размер страницы

                          Поля страницы

                          -

                          Измените используемые по умолчанию поля, то есть пустое пространство между левым, правым, верхним и нижним краями страницы и текстом абзаца, нажав на значок Поля страницы Значок Поля страницы и выбрав один из доступных предустановленных вариантов: Обычные, Обычные (американский стандарт), Узкие, Средние, Широкие. Можно также использовать опцию Настраиваемые поля и указать свои собственные значения в открывшемся окне Поля. Введите в поля ввода нужные значения для Верхнего, Нижнего, Левого и Правого полей страницы или скорректируйте имеющиеся значения с помощью кнопок со стрелками. Когда все будет готово, нажмите кнопку OK. Особые поля будут применены к текущему документу, а в списке Поля страницы Значок Поля страницы появится пункт Последние настраиваемые с указанными параметрами, чтобы можно было применить их к каким-то другим документам.

                          +

                          Измените используемые по умолчанию поля, то есть пустое пространство между левым, правым, верхним и нижним краями страницы и текстом абзаца, нажав на значок Значок Поля Поля и выбрав один из доступных предустановленных вариантов: Обычные, Обычные (американский стандарт), Узкие, Средние, Широкие. Можно также использовать опцию Настраиваемые поля и указать свои собственные значения в открывшемся окне Поля. Введите в поля ввода нужные значения для Верхнего, Нижнего, Левого и Правого полей страницы или скорректируйте имеющиеся значения с помощью кнопок со стрелками. Когда все будет готово, нажмите кнопку OK. Особые поля будут применены к текущему документу, а в списке Значок Поля Поля появится пункт Последние настраиваемые с указанными параметрами, чтобы можно было применить их к каким-то другим документам.

                          Настраиваемые поля

                          Поля можно также изменить вручную, перемещая мышью границу между серой и белой областью на линейке (серые области на линейке обозначают поля страниц):

                          Установка полей

                          Колонки

                          -

                          Примените разметку с несколькими колонками, нажав на значок Вставить колонки Значок Вставить колонки и выбрав из выпадающего списка нужный тип колонок. Доступны следующие варианты:

                          +

                          Примените разметку с несколькими колонками, нажав на значок Значок Колонки Колонки и выбрав из выпадающего списка нужный тип колонок. Доступны следующие варианты:

                          • Две Значок Две колонки - чтобы добавить две колонки одинаковой ширины,
                          • Три Значок Три колонки - чтобы добавить три колонки одинаковой ширины,
                          • @@ -48,11 +48,11 @@

                          Если требуется изменить параметры колонок, выберите из списка опцию Настраиваемые колонки. Откроется окно Колонки, в котором можно будет указать нужное Количество колонок (можно добавить не более 12 колонок) и Интервал между колонками. Введите новые значения в поля ввода или скорректируйте имеющиеся значения с помощью кнопок со стрелками. Отметьте опцию Разделитель, чтобы добавить вертикальную линию между колонками. Когда все будет готово, нажмите кнопку OK, чтобы применить изменения.

                          Настраиваемые колонки

                          -

                          Чтобы точно определить, где должна начинаться новая колонка, установите курсор перед текстом, который требуется перенести в новую колонку, нажмите на значок Вставить разрыв страницы или раздела Разрыв страницы на верхней панели инструментов, а затем выберите опцию Вставить разрыв колонки. Текст будет перенесен в следующую колонку.

                          -

                          Добавленные разрывы колонок обозначаются в документе пунктирной линией: Разрыв колонки. Если вы не видите вставленных разрывов колонок, для их отображения нужно нажать на кнопку Значок Непечатаемые символы на верхней панели инструментов. Для того чтобы убрать разрыв колонки, выделите его мышью и нажмите клавишу Delete.

                          +

                          Чтобы точно определить, где должна начинаться новая колонка, установите курсор перед текстом, который требуется перенести в новую колонку, нажмите на значок Разрыв страницы Разрывы на верхней панели инструментов, а затем выберите опцию Вставить разрыв колонки. Текст будет перенесен в следующую колонку.

                          +

                          Добавленные разрывы колонок обозначаются в документе пунктирной линией: Разрыв колонки. Если вы не видите вставленных разрывов колонок, для их отображения нужно нажать на кнопку Значок Непечатаемые символы на вкладке Главная верхней панели инструментов. Для того чтобы убрать разрыв колонки, выделите его мышью и нажмите клавишу Delete.

                          Чтобы вручную изменить ширину колонок и расстояние между ними, можно использовать горизонтальную линейку.

                          Расстояние между колонками

                          -

                          Чтобы отменить разбиение на колонки и вернуться к обычной разметке с одной колонкой, нажмите на значок Вставить колонки Значок Вставить колонки на верхней панели инструментов и выберите из списка опцию Одна Значок Одна колонка.

                          +

                          Чтобы отменить разбиение на колонки и вернуться к обычной разметке с одной колонкой, нажмите на значок Значок Колонки Колонки на верхней панели инструментов и выберите из списка опцию Одна Значок Одна колонка.

                        \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/UseMailMerge.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/UseMailMerge.htm index 7a9477248..43caec81c 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/UseMailMerge.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/UseMailMerge.htm @@ -18,7 +18,7 @@
                      • Источник данных, используемый для слияния, должен быть электронной таблицей в формате .xlsx, сохраненной на вашем портале. Откройте существующую электронную таблицу или создайте новую и убедитесь, что она соответствует следующим требованиям.

                        Таблица должна содержать строку заголовков с названиями столбцов, так как значения в первой ячейке каждого столбца определяют поля слияния (то есть переменные, которые можно вставить в текст). Каждый столбец должен содержать набор конкретных значений для переменной. Каждая строка в таблице должна соответствовать отдельной записи (то есть ряду значений, относящихся к определенному получателю). В ходе слияния для каждой записи будет создана копия основного документа, и каждое поле слияния, вставленное в основной текст, будет заменено фактическим значением из соответствующего столбца. Если вы собираетесь отправлять результаты по электронной почте, таблица также должна содержать столбец с адресами электронной почты получателей.

                      • -
                      • Откройте существующий текстовый документ или создайте новый. Он должен содержать основной текст, который будет одинаковым для каждой версии документа, полученного в результате слияния. Нажмите значок Слияние Значок Слияние на верхней панели инструментов.
                      • +
                      • Откройте существующий текстовый документ или создайте новый. Он должен содержать основной текст, который будет одинаковым для каждой версии документа, полученного в результате слияния. Нажмите значок Слияние Значок Слияние на вкладке Главная верхней панели инструментов.
                      • Откроется окно Выбрать источник данных. В нем отображается список всех ваших электронных таблиц в формате .xlsx, которые сохранены в разделе Мои документы. Для перехода по другим разделам модуля Документы используйте меню в левой части окна. Выберите нужный файл и нажмите кнопку OK.
                      • Когда источник данных будет загружен, на правой боковой панели станет доступна вкладка Параметры слияния.

                        diff --git a/apps/documenteditor/main/resources/help/ru/UsageInstructions/ViewDocInfo.htm b/apps/documenteditor/main/resources/help/ru/UsageInstructions/ViewDocInfo.htm index 0ee2f72c2..60c6e73f1 100644 --- a/apps/documenteditor/main/resources/help/ru/UsageInstructions/ViewDocInfo.htm +++ b/apps/documenteditor/main/resources/help/ru/UsageInstructions/ViewDocInfo.htm @@ -9,10 +9,10 @@

                        Просмотр сведений о документе

                        -

                        Чтобы получить доступ к подробным сведениям о редактируемом документе, нажмите значок Файл Значок Файл на левой боковой панели и выберите опцию Сведения о документе....

                        +

                        Чтобы получить доступ к подробным сведениям о редактируемом документе, нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Сведения о документе....

                        Общие сведения

                        Сведения о документе включают название документа, автора, размещение, дату создания, а также статистику: количество страниц, абзацев, слов, символов, символов с пробелами.

                        -

                        Примечание: используя онлайн-редакторы, вы можете изменить название документа непосредственно из интерфейса редактора. Для этого выберите опцию Переименовать... в меню Файл Значок Файл или щелкните по имени файла, отображенному в шапке редактора рядом с логотипом (в левом верхнем углу), затем введите нужное Имя файла в новом открывшемся окне и нажмите кнопку OK.

                        +

                        Примечание: используя онлайн-редакторы, вы можете изменить название документа непосредственно из интерфейса редактора. Для этого нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Переименовать..., затем введите нужное Имя файла в новом открывшемся окне и нажмите кнопку OK.

                        Сведения о правах доступа

                        Примечание: эта опция недоступна для пользователей с правами доступа Только чтение.

                        @@ -20,7 +20,9 @@

                        Вы можете также изменить выбранные в настоящий момент права доступа, нажав на кнопку Изменить права доступа в разделе Люди, имеющие права.

                        Журнал версий

                        Примечание: эта опция недоступна для бесплатных аккаунтов, а также для пользователей с правами доступа Только чтение.

                        -

                        Чтобы просмотреть все внесенные в документ изменения, выберите опцию Журнал версий на левой боковой панели. Вы увидите список версий (существенных изменений) и ревизий (незначительных изменений) этого документа с указанием автора и даты и времени создания каждой версии/ревизии. Для версий документа также указан номер версии (например, вер. 2). Чтобы точно знать, какие изменения были внесены в каждой конкретной версии/ревизии, можно просмотреть нужную, нажав на нее на левой боковой панели. Изменения, внесенные автором версии/ревизии, помечены цветом, который показан рядом с именем автора на левой боковой панели. Чтобы вернуться к текущей версии документа, нажмите на ссылку Вернуться к документу над списком версий.

                        +

                        Чтобы просмотреть все внесенные в документ изменения, выберите опцию Журнал версий на левой боковой панели. Вы увидите список версий (существенных изменений) и ревизий (незначительных изменений) этого документа с указанием автора и даты и времени создания каждой версии/ревизии. Для версий документа также указан номер версии (например, вер. 2). Чтобы точно знать, какие изменения были внесены в каждой конкретной версии/ревизии, можно просмотреть нужную, нажав на нее на левой боковой панели. Изменения, внесенные автором версии/ревизии, помечены цветом, который показан рядом с именем автора на левой боковой панели. Можно использовать ссылку Восстановить, расположенную под выбранной версией/ревизией, чтобы восстановить ее.

                        +

                        Version History

                        +

                        Чтобы вернуться к текущей версии документа, нажмите на ссылку Закрыть историю над списком версий.

                        Чтобы закрыть панель Файл и вернуться к редактированию документа, выберите опцию Закрыть меню.

                        diff --git a/apps/documenteditor/main/resources/help/ru/images/access_rights.png b/apps/documenteditor/main/resources/help/ru/images/access_rights.png index 6d3cb0bf8..0163e35aa 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/access_rights.png and b/apps/documenteditor/main/resources/help/ru/images/access_rights.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/addfootnote.png b/apps/documenteditor/main/resources/help/ru/images/addfootnote.png index 319115353..3b2a05b3d 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/addfootnote.png and b/apps/documenteditor/main/resources/help/ru/images/addfootnote.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/addhyperlink.png b/apps/documenteditor/main/resources/help/ru/images/addhyperlink.png index 5627099c9..47b4c40df 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/addhyperlink.png and b/apps/documenteditor/main/resources/help/ru/images/addhyperlink.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/align_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/align_toptoolbar.png new file mode 100644 index 000000000..491f4ade7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/align_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/alignobjectbottom.png b/apps/documenteditor/main/resources/help/ru/images/alignobjectbottom.png new file mode 100644 index 000000000..11bf4ab9c Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/alignobjectbottom.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/alignobjectcenter.png b/apps/documenteditor/main/resources/help/ru/images/alignobjectcenter.png new file mode 100644 index 000000000..c606bf885 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/alignobjectcenter.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/alignobjectleft.png b/apps/documenteditor/main/resources/help/ru/images/alignobjectleft.png new file mode 100644 index 000000000..a18fa0fdf Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/alignobjectleft.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/alignobjectmiddle.png b/apps/documenteditor/main/resources/help/ru/images/alignobjectmiddle.png new file mode 100644 index 000000000..a22936bac Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/alignobjectmiddle.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/alignobjectright.png b/apps/documenteditor/main/resources/help/ru/images/alignobjectright.png new file mode 100644 index 000000000..125207da0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/alignobjectright.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/alignobjecttop.png b/apps/documenteditor/main/resources/help/ru/images/alignobjecttop.png new file mode 100644 index 000000000..f9699e8e2 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/alignobjecttop.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/bringforward.png b/apps/documenteditor/main/resources/help/ru/images/bringforward.png new file mode 100644 index 000000000..91ff2770f Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/bringforward.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/bringforward_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/bringforward_toptoolbar.png new file mode 100644 index 000000000..aca81bb63 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/bringforward_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/bringtofront.png b/apps/documenteditor/main/resources/help/ru/images/bringtofront.png new file mode 100644 index 000000000..bdd785688 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/bringtofront.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/collapse.png b/apps/documenteditor/main/resources/help/ru/images/collapse.png new file mode 100644 index 000000000..4b94a3389 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/collapse.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/comment_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/comment_toptoolbar.png new file mode 100644 index 000000000..a33649d46 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/comment_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/document_language.png b/apps/documenteditor/main/resources/help/ru/images/document_language.png index efaa0e861..59a3122ce 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/document_language.png and b/apps/documenteditor/main/resources/help/ru/images/document_language.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/expand.png b/apps/documenteditor/main/resources/help/ru/images/expand.png new file mode 100644 index 000000000..5de391576 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/expand.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/gotodocuments.png b/apps/documenteditor/main/resources/help/ru/images/gotodocuments.png new file mode 100644 index 000000000..3848e209c Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/gotodocuments.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/group.png b/apps/documenteditor/main/resources/help/ru/images/group.png new file mode 100644 index 000000000..b277d90b8 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/group.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/group_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/group_toptoolbar.png new file mode 100644 index 000000000..04b5f4d96 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/group_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/headerfooter.png b/apps/documenteditor/main/resources/help/ru/images/headerfooter.png index 5aa235f7f..b5eefac2a 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/headerfooter.png and b/apps/documenteditor/main/resources/help/ru/images/headerfooter.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/image.png b/apps/documenteditor/main/resources/help/ru/images/image.png index 90eab5b06..58ca36dde 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/image.png and b/apps/documenteditor/main/resources/help/ru/images/image.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/insert_dropcap_icon.png b/apps/documenteditor/main/resources/help/ru/images/insert_dropcap_icon.png index 0f3a26467..3cdfcba84 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/insert_dropcap_icon.png and b/apps/documenteditor/main/resources/help/ru/images/insert_dropcap_icon.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/insertautoshape.png b/apps/documenteditor/main/resources/help/ru/images/insertautoshape.png index 5e49eab70..315c8474c 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/insertautoshape.png and b/apps/documenteditor/main/resources/help/ru/images/insertautoshape.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/insertchart.png b/apps/documenteditor/main/resources/help/ru/images/insertchart.png index 0d312f97c..c439ab44f 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/insertchart.png and b/apps/documenteditor/main/resources/help/ru/images/insertchart.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/insertcolumns.png b/apps/documenteditor/main/resources/help/ru/images/insertcolumns.png index 89c736095..04b7bbe3a 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/insertcolumns.png and b/apps/documenteditor/main/resources/help/ru/images/insertcolumns.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/insertequationicon.png b/apps/documenteditor/main/resources/help/ru/images/insertequationicon.png index 86b6d1c24..7dcd29b1c 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/insertequationicon.png and b/apps/documenteditor/main/resources/help/ru/images/insertequationicon.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/inserttextarticon.png b/apps/documenteditor/main/resources/help/ru/images/inserttextarticon.png new file mode 100644 index 000000000..7b40e327f Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/inserttextarticon.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/inserttexticon.png b/apps/documenteditor/main/resources/help/ru/images/inserttexticon.png index db7a834ba..26fbaac13 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/inserttexticon.png and b/apps/documenteditor/main/resources/help/ru/images/inserttexticon.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/orientation.png b/apps/documenteditor/main/resources/help/ru/images/orientation.png index 0d3d9acce..6921d0f38 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/orientation.png and b/apps/documenteditor/main/resources/help/ru/images/orientation.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/pagebreak1.png b/apps/documenteditor/main/resources/help/ru/images/pagebreak1.png index 8bc075868..86b73bf82 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/pagebreak1.png and b/apps/documenteditor/main/resources/help/ru/images/pagebreak1.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/pagemargins.png b/apps/documenteditor/main/resources/help/ru/images/pagemargins.png index 4bbbdb27f..eaca1378f 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/pagemargins.png and b/apps/documenteditor/main/resources/help/ru/images/pagemargins.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/pagesize.png b/apps/documenteditor/main/resources/help/ru/images/pagesize.png index 49ef17523..9c41c5898 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/pagesize.png and b/apps/documenteditor/main/resources/help/ru/images/pagesize.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/review_accepttoptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/review_accepttoptoolbar.png new file mode 100644 index 000000000..4df148500 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/review_accepttoptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/review_delete.png b/apps/documenteditor/main/resources/help/ru/images/review_delete.png new file mode 100644 index 000000000..be4b11b9a Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/review_delete.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/review_displaymode.png b/apps/documenteditor/main/resources/help/ru/images/review_displaymode.png new file mode 100644 index 000000000..4fd1ec836 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/review_displaymode.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/review_next.png b/apps/documenteditor/main/resources/help/ru/images/review_next.png index fc7bd6f73..3ff9b5028 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/review_next.png and b/apps/documenteditor/main/resources/help/ru/images/review_next.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/review_previous.png b/apps/documenteditor/main/resources/help/ru/images/review_previous.png index 53e8fa83e..d3c969f61 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/review_previous.png and b/apps/documenteditor/main/resources/help/ru/images/review_previous.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/review_rejecttoptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/review_rejecttoptoolbar.png new file mode 100644 index 000000000..d544472cf Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/review_rejecttoptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/sendbackward.png b/apps/documenteditor/main/resources/help/ru/images/sendbackward.png new file mode 100644 index 000000000..646d2b181 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/sendbackward.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/sendbackward_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/sendbackward_toptoolbar.png new file mode 100644 index 000000000..d32086103 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/sendbackward_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/sendtoback.png b/apps/documenteditor/main/resources/help/ru/images/sendtoback.png new file mode 100644 index 000000000..1f7d60ff0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/sendtoback.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/spellcheckactivated.png b/apps/documenteditor/main/resources/help/ru/images/spellcheckactivated.png index 33564f1d2..63cc45628 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/spellcheckactivated.png and b/apps/documenteditor/main/resources/help/ru/images/spellcheckactivated.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/spellchecking_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/spellchecking_toptoolbar.png new file mode 100644 index 000000000..7c6e601c0 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/spellchecking_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/spellchecking_toptoolbar_activated.png b/apps/documenteditor/main/resources/help/ru/images/spellchecking_toptoolbar_activated.png new file mode 100644 index 000000000..c39a201d7 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/spellchecking_toptoolbar_activated.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/table.png b/apps/documenteditor/main/resources/help/ru/images/table.png index c65d9d32b..0e8b33b19 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/table.png and b/apps/documenteditor/main/resources/help/ru/images/table.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/trackchangesstatusbar.png b/apps/documenteditor/main/resources/help/ru/images/trackchangesstatusbar.png new file mode 100644 index 000000000..99bfb5950 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/trackchangesstatusbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/trackchangestoptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/trackchangestoptoolbar.png new file mode 100644 index 000000000..62a6b7a92 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/trackchangestoptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/ungroup.png b/apps/documenteditor/main/resources/help/ru/images/ungroup.png new file mode 100644 index 000000000..fba764eb1 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/ungroup.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/usersnumber.png b/apps/documenteditor/main/resources/help/ru/images/usersnumber.png index 1d378846f..f5319b8ce 100644 Binary files a/apps/documenteditor/main/resources/help/ru/images/usersnumber.png and b/apps/documenteditor/main/resources/help/ru/images/usersnumber.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/versionhistory.png b/apps/documenteditor/main/resources/help/ru/images/versionhistory.png new file mode 100644 index 000000000..24dc44c88 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/versionhistory.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/wrapping_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/wrapping_toptoolbar.png new file mode 100644 index 000000000..9bc87b65e Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/wrapping_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_behind_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_behind_toptoolbar.png new file mode 100644 index 000000000..466ea1e46 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_behind_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_infront_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_infront_toptoolbar.png new file mode 100644 index 000000000..882bde69c Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_infront_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_inline_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_inline_toptoolbar.png new file mode 100644 index 000000000..a3c94c458 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_inline_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_square_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_square_toptoolbar.png new file mode 100644 index 000000000..800bee149 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_square_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_through_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_through_toptoolbar.png new file mode 100644 index 000000000..083d2d3ff Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_through_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_tight_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_tight_toptoolbar.png new file mode 100644 index 000000000..6d8a46833 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_tight_toptoolbar.png differ diff --git a/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_topandbottom_toptoolbar.png b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_topandbottom_toptoolbar.png new file mode 100644 index 000000000..3fb047a00 Binary files /dev/null and b/apps/documenteditor/main/resources/help/ru/images/wrappingstyle_topandbottom_toptoolbar.png differ diff --git a/apps/documenteditor/mobile/app/controller/Main.js b/apps/documenteditor/mobile/app/controller/Main.js index 4200be534..338ea1ca3 100644 --- a/apps/documenteditor/mobile/app/controller/Main.js +++ b/apps/documenteditor/mobile/app/controller/Main.js @@ -167,7 +167,7 @@ define([ Common.Gateway.on('init', _.bind(me.loadConfig, me)); Common.Gateway.on('showmessage', _.bind(me.onExternalMessage, me)); Common.Gateway.on('opendocument', _.bind(me.loadDocument, me)); - Common.Gateway.ready(); + Common.Gateway.appReady(); } }, @@ -456,6 +456,8 @@ define([ if (this._isDocReady) return; + Common.Gateway.documentReady(); + if (this._state.openDlg) uiApp.closeModal(this._state.openDlg); diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 61c145620..9243cc395 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -47,7 +47,7 @@ "DE.Controllers.Main.criticalErrorExtText": "Drücken Sie \"OK\", um zur Dokumentenliste zurückzukehren.", "DE.Controllers.Main.criticalErrorTitle": "Fehler", "DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Document Editor", - "DE.Controllers.Main.downloadErrorText": "Herinterladen ist fehlgeschlagen.", + "DE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.", "DE.Controllers.Main.downloadMergeText": "Wird heruntergeladen...", "DE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen\t", "DE.Controllers.Main.downloadTextText": "Dokument wird heruntergeladen...", @@ -375,4 +375,4 @@ "DE.Views.Settings.textWords": "Wörter", "DE.Views.Settings.unknownText": "Unbekannt", "DE.Views.Toolbar.textBack": "Zurück" -} \ No newline at end of file +} 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/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 53564759c..0078648a8 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -211,6 +211,8 @@ var ApplicationController = new(function(){ } function onDocumentContentReady() { + Common.Gateway.documentReady(); + api.ShowThumbnails(false); api.asc_DeleteVerticalScroll(); @@ -574,7 +576,7 @@ var ApplicationController = new(function(){ Common.Gateway.on('init', loadConfig); Common.Gateway.on('opendocument', loadDocument); Common.Gateway.on('showmessage', onExternalMessage); - Common.Gateway.ready(); + Common.Gateway.appReady(); } return me; diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index cb12b9020..8921a30ce 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -174,7 +174,7 @@ define([ Common.Gateway.on('init', _.bind(this.loadConfig, this)); Common.Gateway.on('showmessage', _.bind(this.onExternalMessage, this)); Common.Gateway.on('opendocument', _.bind(this.loadDocument, this)); - Common.Gateway.ready(); + Common.Gateway.appReady(); this.getApplication().getController('Viewport').setApi(this.api); this.getApplication().getController('Statusbar').setApi(me.api); @@ -192,7 +192,7 @@ define([ $(document.body).on('blur', 'input, textarea', function(e) { if (!me.isModalShowed) { if (!e.relatedTarget || - !/area_id/.test(e.target.id) && $(e.target).parent().find(e.relatedTarget).length<1 /* Check if focus in combobox goes from input to it's menu button or menu items */ + !/area_id/.test(e.target.id) && ($(e.target).parent().find(e.relatedTarget).length<1 || e.target.localName == 'textarea') /* Check if focus in combobox goes from input to it's menu button or menu items, or from comment editing area to Ok/Cancel button */ && (e.relatedTarget.localName != 'input' || !/form-control/.test(e.relatedTarget.className)) /* Check if focus goes to text input with class "form-control" */ && (e.relatedTarget.localName != 'textarea' || /area_id/.test(e.relatedTarget.id))) /* Check if focus goes to textarea, but not to "area_id" */ { me.api.asc_enableKeyEvents(true); @@ -552,6 +552,8 @@ define([ if (this._isDocReady) return; + Common.Gateway.documentReady(); + if (this._state.openDlg) this._state.openDlg.close(); 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/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); }); 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/main/resources/help/en/HelpfulHints/AdvancedSettings.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm index 450bcb1c8..7a02591cd 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm @@ -9,9 +9,10 @@

                        Advanced Settings of Presentation Editor

                        -

                        Presentation 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.

                        +

                        Presentation 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:

                          +
                        • Spell Checking is used to turn on/off the spell checking option.
                        • Alternate Input is used to turn on/off hieroglyphs.
                        • Alignment Guides is used to turn on/off alignment guides that appear when you move objects and allow you to position them on the slide precisely.
                        • Autosave is used to turn on/off automatic saving of changes you make while editing.
                        • diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm index 36f3e0e7a..a0e20902f 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm @@ -22,8 +22,8 @@

                          Co-editing

                          Presentation 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 presentation is being edited by several users simultaneously in the Strict mode, the edited objects (autoshapes, text objects, tables, images, charts) are marked with dashed lines of different colors. The object that you are editing is surrounded by the green dashed line. Red dashed lines indicate that objects are being edited by other users. 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 presentation 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 presentation 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 either full or read-only access, 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.

                          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.

                          @@ -41,7 +41,7 @@

                          To leave a comment:

                          1. select an object where you think there is an error or problem,
                          2. -
                          3. +
                          4. switch to the Insert 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 object and select the Add Сomment option from the menu,
                          5. @@ -57,7 +57,7 @@
                          6. 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.

                        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/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm index 218ed8753..0d074777f 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm @@ -50,9 +50,9 @@
                      - + - + @@ -99,15 +99,15 @@ - + - + - + @@ -192,12 +192,12 @@ - + - + @@ -301,12 +301,12 @@ - + - + diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/Navigation.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/Navigation.htm index 73f689e6a..8d5ddc31f 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/Navigation.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/Navigation.htm @@ -11,26 +11,27 @@

                      View Settings and Navigation Tools

                      Presentation Editor offers several tools to help you view and navigate through your presentation: zoom, previous/next slide buttons, slide number indicator.

                      Adjust the View Settings

                      -

                      To adjust default view settings and set the most convenient mode to work with the presentation, click the View Settings View Settings icon icon at the upper left 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 presentation, switch to the Home tab of the top toolbar, click the View settings View settings icon icon at the upper left 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 Slide 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 set up tab stops and paragraph indents within the text boxes. To show the hidden Rulers click this option once again.
                      -

                      The right sidebar is minimized by default. To expand it, select any object/slide and click the icon of the currently activated tab on the right (click the icon once again to minimize the right sidebar). The left sidebar width is adjusted by simple drag-and-drop: +

                      The right sidebar is minimized by default. To expand it, select any object/slide and click the icon of the currently activated tab on the right. To minimize the right sidebar, click the icon once again. 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 left to reduce the sidebar width or to the right to extend it.

                      Use the Navigation Tools

                      To navigate through your presentation, use the following tools:

                      The Zoom buttons are situated in the right lower corner and are used to zoom in and out the current presentation. 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 slide width to the visible part of the working area. - To fit the whole slide to the visible part of the working area, click the Fit Slide Fit Slide 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.

                      -

                      Note: you can set a default zoom value. Click the File File icon icon at the left sidebar, go to the Advanced Settings... section, choose the necessary Default Zoom Value from the list and click the Apply button.

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

                      +

                      Note: you can set a default zoom value. Switch to the File tab of the top toolbar, go to the Advanced Settings... section, choose the necessary Default Zoom Value from the list and click the Apply button.

                      To go to the previous or next slide when editing the presentation, you can use the Previous Slide button and Next Slide button buttons at the top and bottom of the vertical scroll bar located to the right of the slide.

                      The Slide Number Indicator shows the current slide as a part of all the slides in the current presentation (slide 'n' of 'nn'). Click this caption to open the window where you can enter the slide number and quickly go to it. If you decide to hide the Status Bar, this tool will become inaccessible.

                      diff --git a/apps/presentationeditor/main/resources/help/en/HelpfulHints/SpellChecking.htm b/apps/presentationeditor/main/resources/help/en/HelpfulHints/SpellChecking.htm index 24665593e..6362a365e 100644 --- a/apps/presentationeditor/main/resources/help/en/HelpfulHints/SpellChecking.htm +++ b/apps/presentationeditor/main/resources/help/en/HelpfulHints/SpellChecking.htm @@ -10,25 +10,27 @@

                      Spell-checking

                      Presentation 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 presentation. Click the Set Presentation 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 presentation.

                      -

                      Set Presentation Language window

                      -

                      To choose a different language for any piece of text within the presentation, 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.

                      +

                      First of all, choose a language for your presentation. Click the Set presentation language icon icon on the right side 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 presentation.

                      +

                      Set presentation language window

                      +

                      To choose a different language for any piece of text within the presentation, 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 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 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/presentationeditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm index c42d5a402..d263047c6 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm @@ -13,7 +13,8 @@

                      To add a hyperlink,

                      1. place the cursor to a position within the text box 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 will appear where you can specify the hyperlink parameters:
                        • Link Type select a link type you wish to insert from the drop-down list: @@ -34,7 +35,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 right-click menu or press the Ctrl+K key combination.

                      Note: it's also possible to select a caracter, word or word combination 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 presentation.

                      diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/AlignArrangeObjects.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/AlignArrangeObjects.htm index a6a2e1520..efed5a7fc 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/AlignArrangeObjects.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/AlignArrangeObjects.htm @@ -9,8 +9,9 @@

                      Align and arrange objects on a slide

                      -

                      The added autoshapes, images, charts or text boxes can be aligned, grouped, ordered, distributed horizontally and vertically on a slide. To perform any of these actions, first select a separate object or several objects in the slide editing area. 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 top toolbar icons described below or the analogous options from the right-click menu.

                      -

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

                      +

                      The added autoshapes, images, charts or text boxes can be aligned, grouped, ordered, distributed horizontally and vertically on a slide. To perform any of these actions, first select a separate object or several objects in the slide editing area. 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 Home 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 shape Align shape icon icon at the Home 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 slide,
                      • Align Center Align Center icon - to line up the object(s) horizontally by the center of the slide,
                      • @@ -19,19 +20,20 @@
                      • Align Middle Align Middle icon - to line up the object(s) vertically by the middle of the slide,
                      • Align Bottom Align Bottom icon - to line up the object(s) vertically by the bottom side of the slide.
                      -

                      To distribute two or more selected objects horizontally or vertically, click the Align Shape Align Shape icon icon at the top toolbar and select the necessary distribution type from the list:

                      +

                      To distribute two or more selected objects horizontally or vertically, click the Align shape Align shape icon icon at the Home tab of the top toolbar and select the necessary distribution type from the list:

                      • Distribute Horizontally Distribute Horizontally icon - to align the selected objects by their centers (from right to left edges) to the horizontal center of the slide
                      • Distribute Vertically Distribute Vertically icon - to align the selected objects by their centers (from top to bottom edges) to the vertical center of the slide.
                      -

                      To arrange the selected object(s) (i.e. to change their order when several objects overlap each other), click the Arrange Shape Arrange Shape icon icon at the top toolbar and select the necessary arrangement type from the list:

                      +

                      Arrange objects

                      +

                      To arrange the selected object(s) (i.e. to change their order when several objects overlap each other), click the Arrange shape Arrange shape icon icon at the Home tab of the top toolbar and select the necessary arrangement type from the list:

                      • Bring To Foreground Bring To Front icon - to move the object(s) in front of all other objects,
                      • Send To Background Send To Back icon - to move the object(s) behind all other objects,
                      • -
                      • Move Forward Bring Forward icon - to move the selected object(s) by one level forward as related to other objects.
                      • -
                      • Move Backward Send Backward icon - to move the selected object(s) by one level backward as related to other objects.
                      • +
                      • Bring Forward Bring Forward icon - to move the selected object(s) by one level forward as related to other objects.
                      • +
                      • Send Backward Send Backward icon - to move the selected object(s) by one level backward as related to other objects.
                      -

                      To group two or more selected objects or ungroup them, click the Arrange Shape Arrange Shape icon icon at the top toolbar and select the necessary option from the list:

                      +

                      To group two or more selected objects or ungroup them, click the Arrange shape Arrange shape icon icon at the Home 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.
                      • diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/ApplyTransitions.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/ApplyTransitions.htm index 415229004..3bb19e935 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/ApplyTransitions.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/ApplyTransitions.htm @@ -9,11 +9,11 @@

                        Apply transitions

                        -

                        A transition is an animation effect that appears between two slides when one slide advances to the next one during a demonstration. You can apply the same transition to all slides or apply different transitions to each separate slide and adjust the transition properties.

                        +

                        A transition is an effect that appears between two slides when one slide advances to the next one during a demonstration. You can apply the same transition to all slides or apply different transitions to each separate slide and adjust the transition properties.

                        To apply a transition to a single slide or several selected slides:

                        -

                        Slide Settings tab

                        +

                        Slide settings tab

                          -
                        1. Select the necessary slide (or several slides in the slide list) you want to apply a transition to. The Slide Settings tab will be activated on the right sidebar. To open it click the Slide Settings Slide Settings icon icon on the right. +
                        2. Select the necessary slide (or several slides in the slide list) you want to apply a transition to. The Slide settings tab will be activated on the right sidebar. To open it click the Slide settings Slide settings icon icon on the right. Alternatively, you can right-click a slide in the slide editing area and select the Slide Settings option from the contextual menu.
                        3. In the Effect drop-down list, select the transition you want to use.

                          The following transitions are available: Fade, Push, Wipe, Split, Uncover, Cover, Clock, Zoom.

                          diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyClearFormatting.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyClearFormatting.htm index e4c4ca6da..be3d5e44d 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyClearFormatting.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyClearFormatting.htm @@ -13,13 +13,13 @@

                          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 quickly remove the formatting that you have applied to a text passage,

                          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/presentationeditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm index 7984878fd..3b4485492 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm @@ -9,7 +9,7 @@

                        Copy/paste data, undo/redo your actions

                        -

                        To cut, copy and paste selected objects (slides, text passages, autoshapes) in the current presentation or undo/redo your actions use the corresponding options from the right-click menu, or keyboard shortcuts, or icons at the top toolbar:

                        +

                        To cut, copy and paste selected objects (slides, text passages, autoshapes) in the current presentation or undo/redo your actions use the corresponding options from the right-click menu, or keyboard shortcuts, or icons available at any tab of the top toolbar:

                        • Cut – select 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 presentation.
                        • Copy – select 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 object can be later inserted to another place in the same presentation.
                        • @@ -21,7 +21,7 @@
                        • Ctrl+V key combination for pasting;
                        • Ctrl+X key combination for cutting.
                        -

                        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 to undo the last operation you performed.
                        • diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CreateLists.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CreateLists.htm index 1d6b63a42..2d8f0f52f 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/CreateLists.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/CreateLists.htm @@ -12,7 +12,8 @@

                          To create a list in your presentation,

                          1. place the cursor to the position within the text box where a list will be started (this can be a new line or the already entered text),
                          2. -
                          3. select the list type you would like to start: +
                          4. switch to the Home tab of the top toolbar,
                          5. +
                          6. 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
                            • Ordered list with digits or letters is created using the Numbering Ordered List icon icon situated at the top toolbar diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/FillObjectsSelectColor.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/FillObjectsSelectColor.htm index 5b0ee01c4..2c2a98e84 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/FillObjectsSelectColor.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/FillObjectsSelectColor.htm @@ -13,9 +13,9 @@
                              1. Select an object
                                  -
                                • To change the slide background fill, select the necessary slides in the slide list. The Slide Settings Icon Slide Settings tab will be activated at the the right sidebar.
                                • -
                                • To change the autoshape fill, left-click the necessary autoshape. The Shape Settings Icon Shape Settings tab will be activated at the the right sidebar.
                                • -
                                • To change the Text Art font fill, left-click the necessary text object. The Text Art Settings Icon Text Art Settings tab will be activated at the the right sidebar.
                                • +
                                • To change the slide background fill, select the necessary slides in the slide list. The Slide settings Icon Slide settings tab will be activated at the the right sidebar.
                                • +
                                • To change the autoshape fill, left-click the necessary autoshape. The Shape settings Icon Shape settings tab will be activated at the the right sidebar.
                                • +
                                • To change the Text Art font fill, left-click the necessary text object. The Text Art settings Icon Text Art settings tab will be activated at the the right sidebar.
                              2. Set the necessary fill type
                              3. diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm index dbc3f5d5e..6b50d8f20 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm @@ -14,7 +14,7 @@

                                To add an autoshape on a slide,

                                1. in the slide list on the left, select the slide you want to add the autoshape to,
                                2. -
                                3. click the Insert Autoshape Insert Autoshape icon icon at the top toolbar,
                                4. +
                                5. click the Shape icon Shape icon at the Home or Insert tab of 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 on the necessary autoshape within the selected group,
                                8. in the slide editing area, place the mouse cursor where you want the shape to be put, @@ -26,8 +26,8 @@

                                Adjust autoshape settings

                                -

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

                                -

                                Shape Settings tab

                                +

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

                                +

                                Shape settings tab

                                • Fill - use this section to select the autoshape fill. You can choose the following options:
                                    @@ -50,7 +50,7 @@

                                    To change the advanced settings of the autoshape, right-click the shape and select the Shape Advanced Settings option from the contextual menu or left-click it and press the Show advanced settings link at the right sidebar. The shape properties window will be opened:

                                    Shape Properties - Size tab

                                    -

                                    The Size tab allows to change the autoshape Width and/or Height. If the Constant Proportions Constant Proportions icon button is clicked (in this case it looks like this Constant Proportions icon activated), the width and height will be changed together preserving the original autoshape aspect ratio.

                                    +

                                    The Size tab allows to change the autoshape Width and/or Height. If the Constant proportions Constant proportions icon button is clicked (in this case it looks like this Constant proportions icon activated), the width and height will be changed together preserving the original autoshape aspect ratio.

                                    Shape Properties - Weights & Arrows tab

                                    The Weights & Arrows tab contains the following parameters:

                                      @@ -83,14 +83,14 @@

                                      Shape Properties - Alternative Text tab

                                      The Alternative Text tab allows to specify a Title and Description which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the shape.


                                      -

                                      To replace the added autoshape, left-click it and use the Change Autoshape drop-down list at the Shape Settings tab of the right sidebar.

                                      +

                                      To replace the added autoshape, left-click it and use the Change Autoshape drop-down list at the Shape settings tab of the right sidebar.

                                      To delete the added autoshape, left-click it and press the Delete key on the keyboard.

                                      To learn how to align an autoshape on the slide or arrange several autoshapes, refer to the Align and arrange objects on a slide section.


                                      Join autoshapes using connectors

                                      You can connect autoshapes using lines with connection points to demonstrate dependencies between the objects (e.g. if you want to create a flowchart). To do that,

                                        -
                                      1. click the Insert Autoshape Insert Autoshape icon icon at the top toolbar,
                                      2. +
                                      3. click the Shape icon Shape icon at the Home or Insert tab of the top toolbar,
                                      4. select the Lines group from the menu,

                                        Shapes - Lines

                                        diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm index 94879edc9..d37e6b6e2 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertCharts.htm @@ -14,7 +14,8 @@

                                        To insert a chart into your presentation,

                                        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), Stock,

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

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

                                          Edit chart elements

                                          To edit the chart Title, select the default text with the mouse and type in your own one instead.

                                          -

                                          To change the font formatting within text elements, such as the chart title, axes titles, legend entries, data labels etc., select the necessary text element by left-clicking it. Then use icons on the top toolbar to change the font type, style, size, or color.

                                          +

                                          To change the font formatting within text elements, such as the chart title, axes titles, legend entries, data labels etc., select the necessary text element by left-clicking it. Then use icons at the Home tab of the top toolbar to change the font type, style, size, or color.

                                          To delete a chart element, select it by left-clicking and press the Delete key on the keyboard.

                                          You can also rotate 3D charts using the mouse. Left-click within the plot area and hold the mouse button until a blue dashed box appears. Drag the cursor without releasing the mouse button to change the 3D chart orientation.

                                          3D chart


                                          Adjust chart settings

                                          Chart tab -

                                          The chart size, type and style as well as data used to create the chart can be altered using the right sidebar. To activate it click the chart and choose the Chart Settings Chart Settings icon icon on the right.

                                          -

                                          The Size section allows you to change the chart width and/or height. If the Constant Proportions Constant Proportions icon button is clicked (in this case it looks like this Constant Proportions icon activated), the width and height will be changed together preserving the original chart aspect ratio.

                                          +

                                          The chart size, type and style as well as data used to create the chart can be altered using the right sidebar. To activate it click the chart and choose the Chart settings Chart settings icon icon on the right.

                                          +

                                          The Size section allows you to change the chart width and/or height. If the Constant proportions Constant proportions icon button is clicked (in this case it looks like this Constant proportions icon activated), the width and height will be changed together preserving the original chart aspect ratio.

                                          The Change Chart Type section allows you to change the selected chart type and/or style using the corresponding drop-down menu.

                                          To select the necessary chart Style, use the second drop-down menu in the Change Chart Type section.

                                          The Edit Data button allows you to open the Chart Editor window and start editing data as described above.

                                          Note: to quickly open the 'Chart Editor' window you can also double-click the chart on the slide.

                                          -

                                          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 and Stroke. 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 and Stroke. Note that you cannot change the shape type.


                                          To delete the inserted chart, left-click it and press the Delete key on the keyboard.

                                          To learn how to align a chart on the slide or arrange several objects, refer to the Align and arrange objects on a slide section.

                                          diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index b0341ada7..7835530f2 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -13,7 +13,8 @@

                                          Add a new equation

                                          To insert an equation from the gallery,

                                            -
                                          1. click the arrow next to the Insert Equation Insert Equation icon icon at the top toolbar,
                                          2. +
                                          3. switch to the Insert tab of the top toolbar,
                                          4. +
                                          5. click the arrow next to the Equation icon Equation icon at the top toolbar,
                                          6. 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,
                                          7. click the certain symbol/equation in the corresponding set of templates.
                                          @@ -28,7 +29,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.

                                          @@ -43,9 +44,9 @@

                                          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 within the text box, 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. 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

                                          -

                                          By default, the equation within the text box is horizontally centered and vertically aligned to the top of the text box. To change its horizontal/vertical alignment, put the cursor within the the equation box (the text box borders will be displayed as dashed lines) and use the corresponding icons at the top toolbar.

                                          -

                                          To increase or decrease the equation font size, click anywhere within the equation box and select the necessary font size from the list on the top toolbar. 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.

                                          +

                                          By default, the equation within the text box is horizontally centered and vertically aligned to the top of the text box. To change its horizontal/vertical alignment, put the cursor within the the equation box (the text box borders will be displayed as dashed lines) and use the corresponding icons at the Home tab of the top toolbar.

                                          +

                                          To increase or decrease the equation font size, click anywhere within the equation box and select the necessary font size from the list at the Home tab of the top toolbar. 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/presentationeditor/main/resources/help/en/UsageInstructions/InsertImages.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertImages.htm index 70837ed6f..30e089119 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertImages.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertImages.htm @@ -15,7 +15,7 @@

                                            To add an image on a slide,

                                            1. in the slide list on the left, select the slide you want to add the image to,
                                            2. -
                                            3. click the Insert Image Insert Image icon icon at the top toolbar,
                                            4. +
                                            5. click the Picture icon Picture icon at the Home or Insert tab of the top toolbar,
                                            6. select one of the following options to load the image:
                                              • the Picture from File option will open the standard Windows dialog window for file selection. Browse your computer hard disk drive for the necessary file and click the Open button
                                              • @@ -27,7 +27,7 @@

                                                Adjust image settings

                                                Image Settings tab -

                                                The right sidebar is activated when you left-click an image and choose the Image Settings Image Settings icon icon on the right. It contains the following sections:

                                                +

                                                The right sidebar is activated when you left-click an image and choose the Image settings Image settings icon icon on the right. It contains the following sections:

                                                Size - is used to view the current image Width and Height or restore the image Default Size if necessary.

                                                Replace Image - is used to load another image instead of the current one selecting the desired source. You can select one of the options: From File or From URL.


                                                @@ -35,7 +35,7 @@

                                                Image Properties

                                                The Placement tab allows you to set the following image properties:

                                                  -
                                                • Size - use this option to change the image width and/or height. If the Constant Proportions Constant Proportions icon button is clicked (in this case it looks like this Constant Proportions icon activated), the width and height will be changed together preserving the original image aspect ratio. To restore the default size of the added image, click the Default Size button.
                                                • +
                                                • Size - use this option to change the image width and/or height. If the Constant proportions Constant proportions icon button is clicked (in this case it looks like this Constant proportions icon activated), the width and height will be changed together preserving the original image aspect ratio. To restore the default size of the added image, click the Default Size button.
                                                • Position - use this option to change the image position on the slide (the position is calculated from the top and the left side of the slide).

                                                Image Properties

                                                diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertTables.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertTables.htm index 5fd7d66fe..e0faf6853 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertTables.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertTables.htm @@ -14,7 +14,8 @@

                                                To insert a table onto a slide,

                                                1. select the slide where a table will be added,
                                                2. -
                                                3. click the Insert Table Insert Table icon icon at the top toolbar,
                                                4. +
                                                5. switch to the Insert tab of the top toolbar,
                                                6. +
                                                7. click the Table icon Table icon at the top toolbar,
                                                8. select the option to create a table:
                                                  • either a table with predefined number of cells (10 by 8 cells maximum)

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

                                                    Adjust table settings

                                                    Table settings tab -

                                                    Most of the table properties as well as its structure can be altered using the right sidebar. To activate it click the table and choose the Table Settings Table Settings icon icon on the right.

                                                    +

                                                    Most of the table properties as well as its structure can be altered using the right sidebar. To activate it click the table and choose the Table settings Table settings icon icon on the right.

                                                    The Rows and Columns sections on the top allow you to emphasize certain rows/columns applying a specific formatting to them, or highlight different rows/columns with the different background colors to clearly distinguish them. The following options are available:

                                                    • Header - emphasizes the topmost row in the table with a special formatting.
                                                    • @@ -73,7 +74,7 @@

                                                      Table Properties

                                                      The Alternative Text tab allows to specify a Title and Description which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the table.


                                                      -

                                                      To format the entered text within the table cells, you can use icons at the top toolbar. The right-click menu that appears when you click the table with the right mouse button includes two additional options:

                                                      +

                                                      To format the entered text within the table cells, you can use icons at the Home tab of the top toolbar. The right-click menu that appears when you click the table with the right mouse button includes two additional options:

                                                      • Cell vertical alignment - it allows you to set the preferred type of the text vertical alignment within the selected cells: Align Top, Align Center, or Align Bottom.
                                                      • Hyperlink - it allows you to insert a hyperlink into the selected cell.
                                                      • diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertText.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertText.htm index ae20b5b74..87a64da66 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertText.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertText.htm @@ -14,19 +14,14 @@

                                                        You can add a new text in three different ways:

                                                        • Add a text passage within the corresponding text placeholder provided on the slide layout. To do that just put the cursor within the placeholder and type in your text or paste it using the Ctrl+V key combination in place of the according default text.
                                                        • -
                                                        • Add a text passage anywhere on a slide. You can insert a text box (a rectangular frame that allows to enter text within it) or a Text Art object (a text box with a predefined font style and color that allows to apply some text effects). To do that: -
                                                            -
                                                          1. click the Insert Text Insert Text icon icon at the top toolbar,
                                                          2. -
                                                          3. select the necessary text object type: -
                                                              +
                                                            • Add a text passage anywhere on a slide. You can insert a text box (a rectangular frame that allows to enter text within it) or a Text Art object (a text box with a predefined font style and color that allows to apply some text effects). Depending on the necessary text object type you can do the following: +
                                                              • - select the Insert text box option from the menu, then click where you want to insert the text box, hold the mouse button and drag the text box border to specify its size. When you release the mouse button, the insertion point will appear in the added text box, allowing you to enter your text. -

                                                                Note: it's also possible to insert a text box by clicking the Insert Autoshape Insert Autoshape icon icon at the top toolbar and selecting the Insert Text autoshape shape from the Basic Shapes group.

                                                                + to add a text box, click the Text icon Text icon at the Home or Insert tab of the top toolbar, then click where you want to insert the text box, hold the mouse button and drag the text box border to specify its size. When you release the mouse button, the insertion point will appear in the added text box, allowing you to enter your text. +

                                                                Note: it's also possible to insert a text box by clicking the Shape icon Shape icon at the top toolbar and selecting the Insert Text autoshape shape from the Basic Shapes group.

                                                              • -
                                                              • select the Insert Text Art option from the menu, then click on the desired style template – the Text Art object will be added in the center of the slide. Select the default text within the text box with the mouse and replace it with your own text.
                                                              • +
                                                              • to add a Text Art object, click the Text Art icon Text Art icon at the Insert tab of the top toolbar, then click on the desired style template – the Text Art object will be added in the center of the slide. Select the default text within the text box with the mouse and replace it with your own text.
                                                              -
                                                            • -
                                                        • Add a text passage within an autoshape. Select a shape and start typing your text.
                                                        @@ -39,7 +34,7 @@

                                                        Text box selected

                                                        • to resize, move, rotate the text box use the special handles on the edges of the shape.
                                                        • -
                                                        • to edit the text box fill, stroke, replace the rectangular box with a different shape, or access the shape advanced settings, click the Shape Settings Shape Settings icon icon on the right sidebar and use the corresponding options.
                                                        • +
                                                        • to edit the text box fill, stroke, replace the rectangular box with a different shape, or access the shape advanced settings, click the Shape settings Shape settings icon icon on the right sidebar and use the corresponding options.
                                                        • to align a text box on the slide or arrange text boxes as related to other objects, right-click on the text box border and use the contextual menu options.
                                                        • to create columns of text within the text box, right-click on the text box border, click the Shape Advanced Settings option and switch to the Columns tab in the Shape - Advanced Settings window.
                                                        @@ -51,7 +46,7 @@

                                                        The text is aligned horizontally 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. drop-down the Horizontal Align Horizontal Align icon list on the top toolbar,
                                                        4. +
                                                        5. drop-down the Horizontal align Horizontal align icon list at the Home tab of the top toolbar,
                                                        6. select the alignment type you would like to apply:
                                                          • the Align text left option Align Left icon allows you to line up your text by the left side of the text box (the right side remains unaligned).
                                                          • @@ -64,7 +59,7 @@

                                                            The text is aligned vertically in three ways: top, middle or bottom. 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. drop-down the Vertical Align Vertical Align icon list on the top toolbar,
                                                            4. +
                                                            5. drop-down the Vertical align Vertical align icon list at the Home tab of the top toolbar,
                                                            6. select the alignment type you would like to apply:
                                                              • the Align text to the top option Align Top icon allows you to line up your text by the top of the text box.
                                                              • @@ -78,22 +73,22 @@

                                                                To Rotate the text within the text box, right-click the text, select the Text Direction option and then choose one of the available options: Horizontal (is selected by default), Rotate at 90° (sets a vertical direction, from top to bottom) or Rotate at 270° (sets a vertical direction, from bottom to top).


                                                                Adjust font type, size, color and apply decoration styles

                                                                -

                                                                You can select the font type, its size and color as well as apply various font decoration styles using the corresponding icons situated at the top toolbar.

                                                                +

                                                                You can select the font type, its size and color as well as 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 presentation, select it with the mouse or using the keyboard and apply the formatting.

                      Символ разрыва страницы Разрыв страницыВставляется при использовании значка Вставить разрыв страницы или раздела Разрыв страницы на верхней панели инструментов и последующем выборе опции Вставить разрыв страницы. Также вставляется при выборе опции С новой страницы в контекстном меню или окне дополнительных параметров.Вставляется при использовании значка Разрыв страницы Разрывы на вкладке Вставка верхней панели инструментов и последующем выборе опции Вставить разрыв страницы. Также вставляется при выборе опции С новой страницы в контекстном меню или окне дополнительных параметров.
                      Символ разрыва раздела - Вставляется при использовании значка Вставить разрыв страницы или раздела Разрыв раздела на верхней панели инструментов и последующем выборе одной из опций подменю Вставить разрыв раздела (используются различные указатели разрыва раздела в зависимости от того, какая опция выбрана: Со следующей страницы, На текущей странице, С четной страницы или С нечетной страницы). + Вставляется при использовании значка Разрыв страницы Разрывы на вкладке Вставка верхней панели инструментов и последующем выборе одной из опций подменю Вставить разрыв раздела (используются различные указатели разрыва раздела в зависимости от того, какая опция выбрана: Со следующей страницы, На текущей странице, С четной страницы или С нечетной страницы).
                      Символ разрыва колонки Разрыв колонкиВставляется при использовании значка Вставить разрыв страницы или раздела Разрыв страницы на верхней панели инструментов и последующем выборе опции Вставить разрыв колонки.Вставляется при использовании значка Разрыв страницы Разрывы на вкладке Вставка верхней панели инструментов и последующем выборе опции Вставить разрыв колонки.
                      Маркер ячейки и конца строки в таблицах Print the presentation with one of the available printers or save it to a file.
                      Save As (Download As)Download As... Ctrl+Shift+SSave the currently edited presentation to the computer hard disk drive in one of the supported formats: PDF, PPTX.Save the currently edited presentation to the computer hard disk drive in one of the supported formats: PDF, PPTX, ODP.
                      Full screen
                      Zoom InCtrl++Ctrl+plus (+) Zoom in the currently edited presentation.
                      Zoom OutCtrl+-Ctrl+minus (-) Zoom out the currently edited presentation.
                      Performing Actions on Slides
                      Navigate forward ENTER, PAGE DOWN, RIGHT ARROW, DOWN ARROW, or SPACEBARPerform the next animation or advance to the next slide.Display the next transition effect or advance to the next slide.
                      Navigate backward PAGE UP, LEFT ARROW, UP ARROWPerform the previous animation or return to the previous slide.Display the previous transition effect or return to the previous slide.
                      Close preview
                      SubscriptCtrl+.(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.
                      SuperscriptCtrl+,(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.
                      - - + + - - + + - - + + @@ -133,7 +128,7 @@

                      To do that,

                      1. put the cursor within the paragraph you need, or select several paragraphs with the mouse,
                      2. -
                      3. use the corresponding fields of the Text Settings Icon Text Settings tab at the right sidebar to achieve the desired results: +
                      4. use the corresponding fields of the Text settings Icon Text settings tab at the right sidebar to achieve the desired results:
                        • Line Spacing - set the line height for the text lines within the paragraph. You can select among three options: at least (sets the minimum line spacing that is needed to fit the largest font or graphic on the line), multiple (sets line spacing that can be expressed in numbers greater than 1), exactly (sets fixed line spacing). You can specify the necessary value in the field on the right.
                        • Paragraph Spacing - set the amount of space between paragraphs. @@ -145,10 +140,10 @@
                      -

                      To quickly change the current paragraph line spacing, you can also use the Line Spacing Line Spacing icon at the top toolbar selecting the needed value from the list: 1.0, 1.15, 1.5, 2.0, 2.5, or 3.0 lines.

                      -

                      To change the paragraph offset from the left side of the text box, put the cursor within the paragraph you need, or select several paragraphs with the mouse and use the respective icons at the top toolbar: Decrease Indent Decrease Indent and Increase Indent Increase Indent.

                      +

                      To quickly change the current paragraph line spacing, you can also use the Line spacing Line spacing icon at the Home tab of the top toolbar selecting the needed value from the list: 1.0, 1.15, 1.5, 2.0, 2.5, or 3.0 lines.

                      +

                      To change the paragraph offset from the left side of the text box, put the cursor within the paragraph you need, or select several paragraphs with the mouse and use the respective icons at the Home tab of the top toolbar: Decrease indent Decrease indent and Increase indent Increase indent.


                      -

                      You can also change the advanced settings of the paragraph. Put the cursor within the paragraph you need - the Text Settings Icon Text Settings tab will be activated at the right sidebar. Press the Show advanced settings link. The paragraph properties window will be opened:

                      +

                      You can also change the advanced settings of the paragraph. Put the cursor within the paragraph you need - the Text settings Icon Text settings tab will be activated at the right sidebar. Press the Show advanced settings link. The paragraph properties window will be opened:

                      Paragraph Properties - Indents & Placement tab

                      The Indents & Placement tab allows to change the first line offset from the left internal margin of the text box as well as the paragraph offset from the left and right internal margins of the text box.

                      You can also use the horizontal ruler to set indents.

                      @@ -160,7 +155,7 @@
                    • Left Indent marker Left Indent marker is used to set the entire paragraph offset from the left internal margin of the text box.
                    • Right Indent marker Right Indent marker is used to set the paragraph offset from the right internal margin of the text box.
                    • -

                      Note: if you don't see the rulers, click the View Settings View Settings icon icon at the upper left corner of the top toolbar and uncheck the Hide Rulers option to display them.

                      +

                      Note: if you don't see the rulers, switch to the Home tab of the top toolbar, click the View settings View settings icon icon at the upper right corner and uncheck the Hide Rulers option to display them.

                      Paragraph Properties - Font tab

                      The Font tab contains the following parameters:

                        @@ -191,12 +186,12 @@
                      • Click the tab selector button Left Tab Stop button in the upper left corner of the working area to choose the necessary tab stop type: Left Left Tab Stop button, Center Center Tab Stop button, Right Right Tab Stop button.
                      • Click on the bottom edge of the ruler where you want to place the tab stop. Drag it along the ruler to change its position. To remove the added tab stop drag it out of the ruler.

                        Horizontal Ruler with the Tab stops added

                        -

                        Note: if you don't see the rulers, click the View Settings View Settings icon icon at the upper right corner of the top toolbar and uncheck the Hide Rulers option to display them.

                        +

                        Note: if you don't see the rulers, switch to the Home tab of the top toolbar, click the View settings View settings icon icon at the upper right corner and uncheck the Hide Rulers option to display them.

                      • Edit a Text Art style

                        -

                        Select a text object and click the Text Art Settings Text Art Settings icon icon on the right sidebar.

                        -

                        Text Art Setting tab

                        +

                        Select a text object and click the Text Art settings Text Art settings icon icon on the right sidebar.

                        +

                        Text Art setting tab

                        • Change the applied text style selecting a new Template from the gallery. You can also change the basic style additionally by selecting a different font type, size etc.
                        • Change the font fill and stroke. The available options are the same as the ones for autoshapes.
                        • diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/ManageSlides.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/ManageSlides.htm index 6ca7ff08b..ce6bcfd2c 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/ManageSlides.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/ManageSlides.htm @@ -10,15 +10,21 @@

                          Manage slides

                          -

                          By default, a newly created presentation has one blank Title slide.

                          -

                          To create a new slide:

                          -
                            -
                          1. click the Add Slide Add Slide icon icon at the top toolbar,
                          2. -
                          3. select a slide with the necessary layout from the menu. -

                            Note: you can change the layout of the added slide anytime. For additional information on how to do that refer to the Set slide parameters section.

                            -
                          4. -
                          -

                          Alternatively, you can right-click any slide in the list and select the New Slide option from the contextual menu.

                          +

                          By default, a newly created presentation has one blank Title Slide. You can create new slides, copy a slide to be able to paste it to another place in the slide list, duplicate slides, move slides to change their order in the slide list, delete unnecessary slides, mark some slides as hidden.

                          +

                          To create a new Title and Content slide:

                          +
                            +
                          • click the Add Slide icon Add Slide icon at the Home or Insert tab of the top toolbar, or
                          • +
                          • right-click any slide in the list and select the New Slide option from the contextual menu, or
                          • +
                          • press the Ctrl+M key combination.
                          • +
                          +

                          To create a new slide with a different layout:

                          +
                            +
                          1. click the arrow next to the Add Slide icon Add Slide icon at the Home or Insert tab of the top toolbar,
                          2. +
                          3. + select a slide with the necessary layout from the menu. +

                            Note: you can change the layout of the added slide anytime. For additional information on how to do that refer to the Set slide parameters section.

                            +
                          4. +

                          A new slide will be inserted after the selected one in the list of the existing slides on the left.

                          To duplicate a slide:

                            @@ -43,7 +49,15 @@
                          1. right-click the slide you want to delete in the list of the existing slides on the left,
                          2. select the Delete Slide option from the contextual menu.
                          -

                          To select all the existing slides at once:

                          +

                          To mark a slide as hidden:

                          +
                            +
                          1. right-click the slide you want to hide in the list of the existing slides on the left,
                          2. +
                          3. select the Hide Slide option from the contextual menu.
                          4. +
                          +

                          The number that corresponds to the hidden slide in the slide list on the left will be crossed out. To display the hidden slide as a regular one in the slide list, click the Hide Slide option once again.

                          +

                          Hidden slide

                          +

                          Note: use this option if you do not want to demonstrate some slides to your audience, but want to be able to access them if necessary. When you start the slideshow in the Presenter mode, you can see all the existing slides in the list on the left, while hidden slides numbers are crossed out. To skip a hidden slide so that it is not displayed when demonstrating the slideshow to your audience, manually select the following slide in the list of the existing slides on the left. If you wish to show a slide marked as hidden to others, just click it in the slide list on the left - the slide will be displayed. If you start the slideshow in the Preview mode, all the slides (including those that have been marked as hidden) will be displayed.

                          +

                          To select all the existing slides at once:

                          1. right-click any slide in the list of the existing slides on the left,
                          2. select the Select All option from the contextual menu.
                          3. @@ -53,6 +67,7 @@
                          4. hold down the Ctrl key,
                          5. select the necessary slides left-clicking them in the list of the existing slides on the left.
                          +

                          Note: all the key combinations that can be used to manage slides are listed at the Keyboard Shortcuts page.

                          \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm index 5fdc25c0a..b8eba7c52 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm @@ -12,16 +12,16 @@

                          When Presentation Editor is open, you can immediately proceed to an already existing presentation that you have recently edited, create a new one, or return to the list of existing presentations.

                          To create a new presentation within Presentation Editor:

                            -
                          1. click the File File icon icon at the left sidebar,
                          2. +
                          3. click the File tab of the top toolbar,
                          4. select the Create New option.

                          To open a recently edited presentation within Presentation Editor:

                            -
                          1. click the File File icon icon at the left sidebar,
                          2. +
                          3. click the File tab of the top toolbar,
                          4. select the Open Recent option,
                          5. choose the presentation you need from the list of recently edited presentations.
                          -

                          To return to the list of existing presentations, click the Go to Documents link in the right upper corner or the File File icon icon at the left sidebar and select the Go to Documents option.

                          +

                          To return to the list of existing documents, click the Go to Documents Go to Documents icon on the right side of the editor header. Alternatively, you can switch to the File tab of the top toolbar and select the Go to Documents option.

                          \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/PreviewPresentation.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/PreviewPresentation.htm index a476d99c3..0eb0150b5 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/PreviewPresentation.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/PreviewPresentation.htm @@ -10,21 +10,52 @@

                          Preview your presentation

                          -

                          To preview your currently edited presentation click the Start Slideshow Start Slideshow icon icon at the top toolbar or at the bottom left corner. You can also select a certain slide within the slide list on the left, right-click it and choose the Start Slideshow option from the contextual menu.

                          -

                          The preview will start from the currently selected slide. In the Preview mode, you can use the following controls at the bottom left corner:

                          +

                          Start the preview

                          +

                          To preview your currently edited presentation, you can:

                            -
                          • the Pause Presentation Pause Presentation icon button allows you to stop previewing.
                          • -
                          • the Start Presentation Start Presentation icon button allows you to resume previewing.
                          • -
                          • the Next Slide Next Slide icon button allows you to advance the following slide.
                          • -
                          • the Previous Slide Previous Slide icon button allows you to return to the preceding slide. -

                            Note: to go to a certain slide in the preview mode, click on the Slide Number Indicator and enter the necessary slide number in the opened window.

                            +
                          • click the Start slideshow Start slideshow icon icon at the Home tab of the top toolbar or on the left side of the status bar, or
                          • +
                          • select a certain slide within the slide list on the left, right-click it and choose the Start Slideshow option from the contextual menu.
                          • +
                          +

                          The preview will start from the currently selected slide.

                          +

                          You can also click the arrow next to the Start slideshow Start slideshow icon icon at the Home tab of the top toolbar and select one of the available options:

                          +
                            +
                          • Show from Beginning - to start the preview from the very first slide,
                          • +
                          • Show from Current slide - to start the preview from the currently selected slide,
                          • +
                          • Show presenter view - to start the preview in the Presenter mode that allows to demonstrate the presentation to your audience without slide notes while viewing the presentation with the slide notes on a different monitor.
                          • +
                          • Show Settings - to open a settings window that allows to set only one option: Loop continuously until 'Esc' is pressed. Check this option if necessary and click OK. If you enable this option, the presentation will be displayed until you press the Escape key on the keyboard, i.e. when the last slide of the presentation is reached, you will be able to go to the first slide again etc. If you disable this option, once the last slide of the presentation is reached, a black screen appears informing you that the presentation is finished and you can exit from the Preview. +

                            Show Settings window

                          • -
                          • the Full Screen Full Screen icon button allows you to switch to full screen mode.
                          • -
                          • the Exit Full Screen Exit Full Screen icon button allows you to exit full screen mode.
                          • -
                          • the Close Slideshow Close Slideshow icon button allows you to exit the preview mode.
                          • +
                          +

                          Use the Preview mode

                          +

                          In the Preview mode, you can use the following controls at the bottom left corner:

                          +

                          Preview Mode controls

                          +
                            +
                          • the Previous slide Previous slide icon button allows you to return to the preceding slide.
                          • +
                          • the Pause presentation Pause presentation icon button allows you to stop previewing. When the button is pressed, it turns into the Start presentation icon button.
                          • +
                          • the Start presentation Start presentation icon button allows you to resume previewing. When the button is pressed, it turns into the Pause presentation icon button.
                          • +
                          • the Next slide Next slide icon button allows you to advance the following slide.
                          • +
                          • the Slide number indicator displays the current slide number as well as the overall number of slides in the presentation. To go to a certain slide in the preview mode, click on the Slide number indicator, enter the necessary slide number in the opened window and press Enter.
                          • +
                          • the Full screen Full screen icon button allows you to switch to full screen mode.
                          • +
                          • the Exit full screen Exit full screen icon button allows you to exit full screen mode.
                          • +
                          • the Close slideshow Close slideshow icon button allows you to exit the preview mode.

                          You can also use the keyboard shortcuts to navigate between the slides in the preview mode.

                          - +

                          Use the Presenter mode

                          +

                          In the Presenter mode, you can view your presentations with slide notes in a separate window, while demonstrating it without notes on a different monitor. The notes for each slide are displayed below the slide preview area.

                          +

                          To navigate between slides you can use the Previous Slide icon and Next Slide icon buttons or click slides in the list on the left. The hidden slide numbers are crossed out in the slide list on the left. To skip a hidden slide so that it is not displayed when demonstrating the slideshow to your audience, manually select the following slide in the list of the existing slides on the left. If you wish to show a slide marked as hidden to others, just click it in the slide list on the left - the slide will be displayed.

                          +

                          You can use the following controls below the slide preview area:

                          +

                          Presenter Mode controls

                          +
                            +
                          • the Timer displays the elapsed time of the presentation in the hh.mm.ss format.
                          • +
                          • the Pause presentation Pause presentation icon button allows you to stop previewing. When the button is pressed, it turns into the Start presentation icon button.
                          • +
                          • the Start presentation Start presentation icon button allows you to resume previewing. When the button is pressed, it turns into the Pause presentation icon button.
                          • +
                          • the Reset button allows to reset the elapsed time of the presentation.
                          • +
                          • the Previous slide Previous slide icon button allows you to return to the preceding slide.
                          • +
                          • the Next slide Next slide icon button allows you to advance the following slide.
                          • +
                          • the Slide number indicator displays the current slide number as well as the overall number of slides in the presentation.
                          • +
                          • the Pointer Pointer icon button allows you to highlight something on the screen when showing the presentation. When this option is enabled, the button looks like this: Pointer icon. To point to some objects hover your mouse pointer over the slide preview area and move the pointer around the slide. The pointer will look the following way: Pointer icon. To disable this option, click the Pointer icon button once again.
                          • +
                          • the End slideshow button allows you to exit the Presenter mode.
                          • +
                          \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm index 500a61995..55867d259 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm @@ -15,19 +15,19 @@
                          • press the Save Save icon icon at the top toolbar, or
                          • use the Ctrl+S key combination, or
                          • -
                          • click the File File icon icon at the left sidebar and select the Save option.
                          • +
                          • click the File tab of the top toolbar and select the Save option.

                          To print out the current presentation,

                          • click the Print Print icon icon at the top toolbar, or
                          • use the Ctrl+P key combination, or
                          • -
                          • click the File File icon icon at the left sidebar and select the Print option.
                          • +
                          • click the File tab of the top toolbar and select the Print option.

                          After that a PDF file will be generated on the basis of the presentation. You can open and print it out, or save onto your computer hard disk drive or removable medium to print it out later.

                          To download the resulting presentation onto your computer hard disk drive,

                            -
                          1. click the File File icon icon at the left sidebar,
                          2. +
                          3. click the File tab of the top toolbar,
                          4. select the Download as option,
                          5. choose one of the available formats depending on your needs: PDF, PPTX, or ODP.
                          diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/SetSlideParameters.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/SetSlideParameters.htm index bdd6a2b2a..943e4224e 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/SetSlideParameters.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/SetSlideParameters.htm @@ -10,29 +10,31 @@

                          Set slide parameters

                          -

                          To customize your presentation, you can select a theme, color scheme and slide size for the whole presentation, as well as change the background fill or slide layout for each separate slide. You can also apply transitions between the slides.

                          +

                          To customize your presentation, you can select a theme, color scheme, slide size and orientation for the entire presentation, change the background fill or slide layout for each separate slide, apply transitions between the slides. It's also possible to add explanatory notes to each slide that can be helpful when demonstrating the presentation in the Presenter mode.

                          • Themes allow you to quickly change the presentation design, notably the slides background appearance, predefined fonts for titles and texts and the color scheme that is used for the presentation elements. - To select a theme for the presentation, click on the necessary predefined theme from the themes gallery in the right part of the top toolbar. The selected theme will be applied to all the slides if you have not previously selected certain slides to apply the theme to. + To select a theme for the presentation, click on the necessary predefined theme from the themes gallery on the right side of the top toolbar Home tab. The selected theme will be applied to all the slides if you have not previously selected certain slides to apply the theme to.

                            Themes gallery

                            +

                            To change the selected theme for one or more slides, you can right-click the selected slides in the list on the left (or right-click a slide in the editing area), select the Change Theme option from the contextual menu and choose the necessary theme.

                          • Color Schemes affect the predefined colors used for the presentation elements (fonts, lines, fills etc.) and allow you to maintain color consistency throughout the entire presentation. - To change a color scheme, click the Change Color Scheme Change Color Scheme icon icon at the top toolbar and select the necessary scheme from the drop-down list. The selected scheme will be applied to all the slides. + To change a color scheme, click the Change color scheme icon Change color scheme icon at the Home tab of the top toolbar and select the necessary scheme from the drop-down list. The selected scheme will be applied to all the slides.

                            Color Schemes

                          • -
                          • To change a slide size for all the slides in the presentation, click the Select Slide Size Select Slide Size icon icon at the top toolbar and select the necessary option from the drop-down list. You can select: +
                          • To change a slide size for all the slides in the presentation, click the Select slide size icon Select slide size icon at the Home tab of the top toolbar and select the necessary option from the drop-down list. You can select:
                            • one of the two quick-access presets - Standard (4:3) or Widescreen (16:9),
                            • the Advanced Settings option that opens the Slide Size Settings window where you can select one of the available presets or set a Custom size specifying the desired Width and Height values.

                              Slide Size Settings window

                              The available presets are: Standard (4:3), Widescreen (16:9), Widescreen (16:10), Letter Paper (8.5x11 in), Ledger Paper (11x17 in), A3 Paper (297x420 mm), A4 Paper (210x297 mm), B4 (ICO) Paper (250x353 mm), B5 (ICO) Paper (176x250 mm), 35 mm Slides, Overhead, Banner.

                              -
                            • +

                              The Slide Orientation menu allows to change the currently selected orientation type. The default orientation type is Landscape that can be switched to Portrait.

                              +
                          • To change a background fill:
                            1. in the slide list on the left, select the slides you want to apply the fill to. Or click at any blank space within the currently edited slide in the slide editing area to change the fill type for this separate slide.
                            2. -
                            3. at the Slide Settings tab of the right sidebar, select the necessary option: +
                            4. at the Slide settings tab of the right sidebar, select the necessary option:
                              • Color Fill - select this option to specify the solid color you want to apply to the selected slides.
                              • Gradient Fill - select this option to fill the slide with two colors which smoothly change from one to another.
                              • @@ -47,7 +49,9 @@
                              • Transitions help make your presentation more dynamic and keep your audience's attention. To apply a transition:
                                1. in the slide list on the left, select the slides you want to apply a transition to,
                                2. -
                                3. choose a transition in the Effect drop-down list on the Slide Settings tab,
                                4. +
                                5. choose a transition in the Effect drop-down list on the Slide settings tab, +

                                  Note: to open the Slide settings tab you can click the Slide settings Slide settings icon icon on the right or right-click the slide in the slide editing area and select the Slide Settings option from the contextual menu.

                                  +
                                6. adjust the transition properties: choose a transition variation, duration and the way to advance slides,
                                7. click the Apply to All Slides button if you want to apply the same transition to all slides in the presentation.

                                  For more detailed information on these options please refer to the Apply transitions section.

                                  @@ -57,13 +61,24 @@
                                8. To change a slide layout:
                                  1. in the slide list on the left, select the slides you want to apply a new layout to,
                                  2. -
                                  3. click the Change Slide Layout Change Slide Layout icon icon at the top toolbar,
                                  4. +
                                  5. click the Change slide layout icon Change slide layout icon at the Home tab of the top toolbar,
                                  6. select the necessary layout from the menu. -

                                    Alternatively, you can right-click the necessary slide in the list on the left, select the Change Layout option from the contextual menu and choose the necessary layout.

                                    +

                                    Alternatively, you can right-click the necessary slide in the list on the left or in the editing area, select the Change Layout option from the contextual menu and choose the necessary layout.

                                    Note: currently, the following layouts are available: Title, Title and Object, Section Header, Two Objects, Two Texts and Two Objects, Title Only, Blank, Title, Object and Caption, Picture and Caption, Vertical Text, Vertical Title and Text.

                                9. +
                                10. + To add notes to a slide: +
                                    +
                                  1. in the slide list on the left, select the slide you want to add a note to,
                                  2. +
                                  3. click the Click to add notes caption below the slide editing area,
                                  4. +
                                  5. type in the text of your note. +

                                    Note: you can format the text using the icons at the Home tab of the top toolbar.

                                    +
                                  6. +
                                  +

                                  When you start the slideshow in the Presenter mode, you will be able to see all the slide notes below the slide preview area.

                                  +
                          diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/ViewPresentationInfo.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/ViewPresentationInfo.htm index d9271c9d8..28c145d38 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/ViewPresentationInfo.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/ViewPresentationInfo.htm @@ -9,10 +9,12 @@

                          View presentation information

                          -

                          To access the detailed information about the currently edited presentation, click the File File icon icon at the left sidebar and select the Presentation Info option.

                          +

                          To access the detailed information about the currently edited presentation, click the File tab of the top toolbar and select the Presentation Info option.

                          General Information

                          The presentation information includes presentation title, author, location and creation date.

                          -

                          Note: Online Editors allow you to change the presentation title directly from the editor interface. To do that, select the Rename... option from the File File icon menu or click on the file name displayed in the editor header next to the logo (in the upper left corner), then enter the necessary File name in a new window that opens and click OK.

                          +
                          +

                          Note: Online Editors allow you to change the presentation title directly from the editor interface. To do that, click the File tab of the top toolbar and select the Rename... option, then enter the necessary File name in a new window that opens and click OK.

                          +

                          Permission Information

                          Note: this option is not available for users with the Read Only permissions.

                          diff --git a/apps/presentationeditor/main/resources/help/en/images/access_rights.png b/apps/presentationeditor/main/resources/help/en/images/access_rights.png index 6d3cb0bf8..a8330a8d1 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/access_rights.png and b/apps/presentationeditor/main/resources/help/en/images/access_rights.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/addhyperlink.png b/apps/presentationeditor/main/resources/help/en/images/addhyperlink.png index 5627099c9..47b4c40df 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/addhyperlink.png and b/apps/presentationeditor/main/resources/help/en/images/addhyperlink.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/addslide.png b/apps/presentationeditor/main/resources/help/en/images/addslide.png index 0ac0ed119..a55e3d1a7 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/addslide.png and b/apps/presentationeditor/main/resources/help/en/images/addslide.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/alignobjectbottom.png b/apps/presentationeditor/main/resources/help/en/images/alignobjectbottom.png index 7cedb3992..11bf4ab9c 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/alignobjectbottom.png and b/apps/presentationeditor/main/resources/help/en/images/alignobjectbottom.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/alignobjectcenter.png b/apps/presentationeditor/main/resources/help/en/images/alignobjectcenter.png index b5e28f2f5..c606bf885 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/alignobjectcenter.png and b/apps/presentationeditor/main/resources/help/en/images/alignobjectcenter.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/alignobjectleft.png b/apps/presentationeditor/main/resources/help/en/images/alignobjectleft.png index b25727389..a18fa0fdf 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/alignobjectleft.png and b/apps/presentationeditor/main/resources/help/en/images/alignobjectleft.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/alignobjectmiddle.png b/apps/presentationeditor/main/resources/help/en/images/alignobjectmiddle.png index 43b436bcc..a22936bac 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/alignobjectmiddle.png and b/apps/presentationeditor/main/resources/help/en/images/alignobjectmiddle.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/alignobjectright.png b/apps/presentationeditor/main/resources/help/en/images/alignobjectright.png index 013a93ff0..125207da0 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/alignobjectright.png and b/apps/presentationeditor/main/resources/help/en/images/alignobjectright.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/alignobjecttop.png b/apps/presentationeditor/main/resources/help/en/images/alignobjecttop.png index 02f4c02d1..f9699e8e2 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/alignobjecttop.png and b/apps/presentationeditor/main/resources/help/en/images/alignobjecttop.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/bringforward.png b/apps/presentationeditor/main/resources/help/en/images/bringforward.png index 43a5f466c..91ff2770f 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/bringforward.png and b/apps/presentationeditor/main/resources/help/en/images/bringforward.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/bringtofront.png b/apps/presentationeditor/main/resources/help/en/images/bringtofront.png index 29f2fc9f3..bdd785688 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/bringtofront.png and b/apps/presentationeditor/main/resources/help/en/images/bringtofront.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/comment_toptoolbar.png b/apps/presentationeditor/main/resources/help/en/images/comment_toptoolbar.png new file mode 100644 index 000000000..a33649d46 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/comment_toptoolbar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/distributehorizontally.png b/apps/presentationeditor/main/resources/help/en/images/distributehorizontally.png index 2c9532e75..815ab254a 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/distributehorizontally.png and b/apps/presentationeditor/main/resources/help/en/images/distributehorizontally.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/distributevertically.png b/apps/presentationeditor/main/resources/help/en/images/distributevertically.png index 2056db343..124e9acac 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/distributevertically.png and b/apps/presentationeditor/main/resources/help/en/images/distributevertically.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/gotodocuments.png b/apps/presentationeditor/main/resources/help/en/images/gotodocuments.png new file mode 100644 index 000000000..0ad9d357d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/gotodocuments.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/group.png b/apps/presentationeditor/main/resources/help/en/images/group.png index 7b3faad26..b277d90b8 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/group.png and b/apps/presentationeditor/main/resources/help/en/images/group.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/hidden_slide.png b/apps/presentationeditor/main/resources/help/en/images/hidden_slide.png new file mode 100644 index 000000000..9599cd32e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/hidden_slide.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/image.png b/apps/presentationeditor/main/resources/help/en/images/image.png index 90eab5b06..58ca36dde 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/image.png and b/apps/presentationeditor/main/resources/help/en/images/image.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/insertautoshape.png b/apps/presentationeditor/main/resources/help/en/images/insertautoshape.png index 5e49eab70..315c8474c 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/insertautoshape.png and b/apps/presentationeditor/main/resources/help/en/images/insertautoshape.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/insertchart.png b/apps/presentationeditor/main/resources/help/en/images/insertchart.png index 0d312f97c..c439ab44f 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/insertchart.png and b/apps/presentationeditor/main/resources/help/en/images/insertchart.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/insertequationicon.png b/apps/presentationeditor/main/resources/help/en/images/insertequationicon.png index 666dd6a53..7dcd29b1c 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/insertequationicon.png and b/apps/presentationeditor/main/resources/help/en/images/insertequationicon.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/inserttable.png b/apps/presentationeditor/main/resources/help/en/images/inserttable.png index b7ea58122..0e8b33b19 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/inserttable.png and b/apps/presentationeditor/main/resources/help/en/images/inserttable.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/inserttextarticon.png b/apps/presentationeditor/main/resources/help/en/images/inserttextarticon.png new file mode 100644 index 000000000..7b40e327f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/inserttextarticon.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/inserttexticon.png b/apps/presentationeditor/main/resources/help/en/images/inserttexticon.png index db7a834ba..26fbaac13 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/inserttexticon.png and b/apps/presentationeditor/main/resources/help/en/images/inserttexticon.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/pointer.png b/apps/presentationeditor/main/resources/help/en/images/pointer.png new file mode 100644 index 000000000..32306dd3e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/pointer.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/pointer_enabled.png b/apps/presentationeditor/main/resources/help/en/images/pointer_enabled.png new file mode 100644 index 000000000..bfa4789ab Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/pointer_enabled.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/pointer_screen.png b/apps/presentationeditor/main/resources/help/en/images/pointer_screen.png new file mode 100644 index 000000000..e2665204c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/pointer_screen.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/presenter_mode.png b/apps/presentationeditor/main/resources/help/en/images/presenter_mode.png new file mode 100644 index 000000000..e2daa196f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/presenter_mode.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/preview_mode.png b/apps/presentationeditor/main/resources/help/en/images/preview_mode.png new file mode 100644 index 000000000..28e1c4792 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/preview_mode.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/sendbackward.png b/apps/presentationeditor/main/resources/help/en/images/sendbackward.png index f6863cb75..646d2b181 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/sendbackward.png and b/apps/presentationeditor/main/resources/help/en/images/sendbackward.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/sendtoback.png b/apps/presentationeditor/main/resources/help/en/images/sendtoback.png index 6f530e6dc..1f7d60ff0 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/sendtoback.png and b/apps/presentationeditor/main/resources/help/en/images/sendtoback.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/showsettings.png b/apps/presentationeditor/main/resources/help/en/images/showsettings.png new file mode 100644 index 000000000..80246c16c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/showsettings.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/slidesizesettingswindow.png b/apps/presentationeditor/main/resources/help/en/images/slidesizesettingswindow.png index 8c7d444ba..06846e9ce 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/slidesizesettingswindow.png and b/apps/presentationeditor/main/resources/help/en/images/slidesizesettingswindow.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/spellcheckactivated.png b/apps/presentationeditor/main/resources/help/en/images/spellcheckactivated.png index 33564f1d2..63cc45628 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/spellcheckactivated.png and b/apps/presentationeditor/main/resources/help/en/images/spellcheckactivated.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/spellchecking_toptoolbar.png b/apps/presentationeditor/main/resources/help/en/images/spellchecking_toptoolbar.png new file mode 100644 index 000000000..7c6e601c0 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/spellchecking_toptoolbar.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/spellchecking_toptoolbar_activated.png b/apps/presentationeditor/main/resources/help/en/images/spellchecking_toptoolbar_activated.png new file mode 100644 index 000000000..c39a201d7 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/spellchecking_toptoolbar_activated.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/ungroup.png b/apps/presentationeditor/main/resources/help/en/images/ungroup.png index 80045757e..fba764eb1 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/ungroup.png and b/apps/presentationeditor/main/resources/help/en/images/ungroup.png differ diff --git a/apps/presentationeditor/main/resources/help/en/images/usersnumber.png b/apps/presentationeditor/main/resources/help/en/images/usersnumber.png index 1d378846f..becee0dc3 100644 Binary files a/apps/presentationeditor/main/resources/help/en/images/usersnumber.png and b/apps/presentationeditor/main/resources/help/en/images/usersnumber.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm index 3b0ce69e9..1914d9c0d 100644 --- a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm +++ b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm @@ -9,7 +9,7 @@

                          Дополнительные параметры редактора презентаций

                          -

                          Вы можете изменить дополнительные параметры онлайн-редактора презентаций. Для перехода к ним щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Дополнительные параметры.... Можно также использовать значок Значок Дополнительные параметры, расположенный в правом верхнем углу верхней панели инструментов.

                          +

                          Вы можете изменить дополнительные параметры редактора презентаций. Для перехода к ним откройте вкладку Файл на верхней панели инструментов и выберите опцию Дополнительные параметры.... Можно также использовать значок Значок Дополнительные параметры, расположенный в правом верхнем углу на вкладке Главная верхней панели инструментов.

                          Доступны следующие дополнительные параметры:

                          • Альтернативный ввод - используется для включения/отключения иероглифов.
                          • diff --git a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm index 479e26685..23c8e8b3c 100644 --- a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm +++ b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm @@ -22,8 +22,8 @@

                            Совместное редактирование

                            В редакторе презентаций можно выбрать один из двух доступных режимов совместного редактирования. Быстрый используется по умолчанию, в нем изменения, вносимые другими пользователями, отображаются в реальном времени. Строгий режим позволяет скрывать изменения, внесенные другими пользователями, до тех пор, пока вы не нажмете значок Сохранить Значок Сохранить, чтобы сохранить ваши изменения и принять изменения, внесенные другими. Режим можно выбрать в Дополнительных настройках.

                            Когда презентацию редактируют одновременно несколько пользователей в Строгом режиме, редактируемые объекты (автофигуры, текстовые объекты, таблицы, изображения, диаграммы) помечаются пунктирными линиями разных цветов. Объект, который редактируете Вы, окружен зеленой пунктирной линией. Красные пунктирные линии означают, что объекты редактируются другими пользователями. При наведении курсора мыши на один из редактируемых объектов отображается имя того пользователя, который в данный момент его редактирует. В Быстром режиме действия и имена участников совместного редактирования отображаются непосредственно в процессе редактирования.

                            -

                            Количество пользователей, которые в данный момент работают над текущей презентацией, отображается в левом нижнем углу в строке состояния - Значок Количество пользователей. Чтобы увидеть, кто именно редактирует файл в настоящий момент, откройте панель Чата с полным списком пользователей.

                            -

                            Если файл не просматривают или не редактируют другие пользователи, значок в строке состояния будет выглядеть следующим образом: Значок Управление правами доступа к документу, с его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: Значок Количество пользователей.

                            +

                            Количество пользователей, которые в данный момент работают над текущей презентацией, отображается в правой части шапки редактора - Значок Количество пользователей. Чтобы увидеть, кто именно редактирует файл в настоящий момент, можно щелкнуть по этому значку или открыть панель Чата с полным списком пользователей.

                            +

                            Если файл не просматривают или не редактируют другие пользователи, значок в шапке редактора будет выглядеть следующим образом: Значок Управление правами доступа к документу. С его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: Значок Количество пользователей.

                            Как только один из пользователей сохранит свои изменения, нажав на значок Значок Сохранить, все остальные увидят в строке состояния примечание, которое сообщает о наличии обновлений. Чтобы сохранить внесенные вами изменения и сделать их доступными для других пользователей, а также получить обновления, сохраненные другими пользователями, нажмите на значок Значок Сохранить и получить обновления в левом верхнем углу верхней панели инструментов. Обновления будут подсвечены, чтобы Вы могли проверить, что конкретно изменилось.

                            Чат

                            Этот инструмент можно использовать для оперативного согласования процесса совместного редактирования, например, для того, чтобы договориться с другими участниками, кто и что должен делать, какой абзац вы собираетесь сейчас отредактировать и т.д.

                            @@ -41,7 +41,7 @@

                            Чтобы оставить комментарий:

                            1. выделите объект, в котором, по Вашему мнению, содержится какая-то ошибка или проблема,
                            2. -
                            3. +
                            4. переключитесь на вкладку Вставка верхней панели инструментов и нажмите на кнопку Значок Комментарий Комментарий или
                              используйте значок Значок Комментарии на левой боковой панели, чтобы открыть панель Комментарии, и нажмите на ссылку Добавить комментарий к документу или
                              щелкните правой кнопкой мыши по выделенному объекту и выберите в меню команду Добавить комментарий,
                            5. diff --git a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm index 5a6988982..261742cce 100644 --- a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm @@ -50,9 +50,9 @@
                      - + - + @@ -99,17 +99,17 @@ - + - + - - - + + + @@ -192,12 +192,12 @@ - + - + @@ -301,12 +301,12 @@ - + - + diff --git a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/Navigation.htm b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/Navigation.htm index 6289b1ce4..cb34765dc 100644 --- a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/Navigation.htm +++ b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/Navigation.htm @@ -9,14 +9,16 @@

                      Параметры представления и инструменты навигации

                      -

                      В онлайн-редакторе презентаций доступен ряд инструментов, позволяющих облегчить просмотр и навигацию по презентации: масштаб, кнопки перехода на предыдущий/следующий слайд, указатель номера слайда.

                      +

                      В редакторе презентаций доступен ряд инструментов, позволяющих облегчить просмотр и навигацию по презентации: масштаб, кнопки перехода на предыдущий/следующий слайд, указатель номера слайда.

                      Настройте параметры представления

                      -

                      Чтобы настроить стандартные параметры представления и установить наиболее удобный режим работы с презентацией, нажмите значок Параметры представления Значок Параметры представления в правом верхнем углу верхней панели инструментов и выберите, какие элементы интерфейса требуется скрыть или отобразить. +

                      Чтобы настроить стандартные параметры представления и установить наиболее удобный режим работы с презентацией, перейдите на вкладку Главная верхней панели инструментов, нажмите значок Параметры представления Значок Параметры представления в правом верхнем углу и выберите, какие элементы интерфейса требуется скрыть или отобразить. Из выпадающего списка Параметры представления можно выбрать следующие опции:

                        -
                      • Компактная панель инструментов - включает режим компактной панели инструментов, которая предоставляет доступ к основным функциям. Чтобы отобразить стандартную панель инструментов, щелкните по этой опции еще раз.
                      • -
                      • Скрыть строку заголовка - скрывает самую верхнюю панель, на которой отображается название документа и опция Перейти к Документам. Чтобы отобразить скрытую строку заголовка, щелкните по этой опции еще раз.
                      • +
                      • + Скрыть панель инструментов - скрывает верхнюю панель инструментов, которая содержит команды. Вкладки при этом остаются видимыми. Чтобы показать панель инструментов, когда эта опция включена, можно нажать на любую вкладку. Панель инструментов будет отображаться до тех пор, пока вы не щелкнете мышью где-либо за ее пределами.
                        Чтобы отключить этот режим, перейдите на вкладку Главная, затем нажмите значок Параметры представления Значок Параметры представления и еще раз щелкните по опции Скрыть панель инструментов. Верхняя панель инструментов будет отображаться постоянно. +

                        Примечание: можно также дважды щелкнуть по любой вкладке, чтобы скрыть верхнюю панель инструментов или отобразить ее снова.

                        +
                      • Скрыть строку состояния - скрывает самую нижнюю панель, на которой находится Указатель номера слайда и кнопки Масштаба. Чтобы отобразить скрытую строку состояния, щелкните по этой опции еще раз.
                      • Скрыть линейки - скрывает линейки, которые используются для установки позиций табуляции и отступов абзацев внутри текстовых полей. Чтобы отобразить скрытые линейки, щелкните по этой опции еще раз.
                      @@ -30,7 +32,7 @@ Щелкните по значку По ширине Кнопка По ширинечтобы ширина слайда соответствовала видимой части рабочей области. Чтобы весь слайд целиком помещался в видимой части рабочей области, нажмите значок По размеру слайда Кнопка По размеру слайда. Параметры масштаба доступны также из выпадающего списка Параметры представления Значок Параметры представления, что может быть полезно в том случае, если Вы решили скрыть строку состояния.

                      -

                      Примечание: можно задать значение масштаба по умолчанию. Щелкните по значку Файл Значок Файл на левой боковой панели, перейдите в раздел Дополнительные параметры..., выберите из списка нужное Стандартное значение масштаба и нажмите кнопку Применить.

                      +

                      Примечание: можно задать значение масштаба по умолчанию. Откройте вкладку Файл на верхней панели инструментов, перейдите в раздел Дополнительные параметры..., выберите из списка нужное Стандартное значение масштаба и нажмите кнопку Применить.

                      Для перехода на предыдущий или следующий слайд в ходе редактирования презентации можно использовать кнопки Кнопка Предыдущий слайд и Кнопка Следующий слайд, расположенные сверху и снизу вертикальной полосы прокрутки, которая находится справа от слайда.

                      Указатель номера слайда показывает текущий слайд в составе всех слайдов текущей презентации (слайд 'n' из 'nn'). Щелкните по этой надписи, чтобы открыть окно, в котором можно ввести номер нужного слайда и быстро перейти к нему. Если Вы решите скрыть строку состояния, этот инструмент станет недоступен.

                      diff --git a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm index 05ffcd87e..a12507e24 100644 --- a/apps/presentationeditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm +++ b/apps/presentationeditor/main/resources/help/ru/HelpfulHints/SpellChecking.htm @@ -9,10 +9,15 @@

                      Проверка орфографии

                      -

                      В онлайн-редакторе презентаций можно проверять правописание текста на определенном языке и исправлять ошибки в ходе редактирования.

                      +

                      В редакторе презентаций можно проверять правописание текста на определенном языке и исправлять ошибки в ходе редактирования.

                      Прежде всего выберите язык презентации. Щелкните по значку Значок Задать язык презентации в правой части строки состояния. В окне, которое появится, выберите нужный язык и нажмите кнопку OK. Выбранный язык будет применен ко всей презентации.

                      Окно выбора языка презентации

                      Чтобы выбрать какой-то другой язык для любого фрагмента текста в этой презентации, выделите мышью нужную часть теста и используйте меню Проверка орфографии - выбор языка текста, которое находится в строке состояния.

                      +

                      Для включения функции проверки орфографии можно сделать следующее:

                      +
                        +
                      • нажмите на значок Проверка орфографии отключена Проверка орфографии в строке состояния или
                      • +
                      • откройте вкладку Файл верхней панели инструментов, выберите опцию Дополнительные параметры..., поставьте галочку рядом с опцией Включить проверку орфографии и нажмите кнопку Применить.
                      • +

                      Слова, написанные с ошибками, будут подчеркнуты красной чертой.

                      Щелкните правой кнопкой мыши по нужному слову, чтобы вызвать меню, и:

                        @@ -21,14 +26,11 @@
                      • выберите другой язык для этого слова.

                      Проверка орфографии

                      -

                      Для отключения проверки орфографии:

                      -
                        -
                      1. щелкните по значку Файл Значок Файл в левой боковой панели инструментов,
                      2. -
                      3. выберите опцию Дополнительные параметры...,
                      4. -
                      5. снимите флажок Включить проверку орфографии,
                      6. -
                      7. щелкните по кнопке Применить.
                      8. -
                      -

                      Вместо этого можно щелкнуть по значку Проверка орфографии включена в правой части Строки состояния, после чего значок будет выглядеть так: Проверка орфографии отключена.

                      +

                      Для отключения функции проверки орфографии можно сделать следующее:

                      +
                        +
                      • нажмите на значок Проверка орфографии включена Проверка орфографии в строке состояния или
                      • +
                      • откройте вкладку Файл верхней панели инструментов, выберите опцию Дополнительные параметры..., уберите галочку рядом с опцией Включить проверку орфографии и нажмите кнопку Применить.
                      • +
                      \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm index 29e3fab18..522aa286a 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm @@ -13,7 +13,8 @@

                      Для добавления гиперссылки:

                      1. установите курсор на том месте внутри текстового поля, где требуется добавить гиперссылку,
                      2. -
                      3. щелкните по значку Добавить гиперссылку Значок Добавить гиперссылку на верхней панели инструментов,
                      4. +
                      5. перейдите на вкладку Вставка верхней панели инструментов,
                      6. +
                      7. нажмите значок Значок Гиперссылка Гиперссылка,
                      8. после этого появится окно Параметры гиперссылки, в котором можно указать параметры гиперссылки:
                        • Тип ссылки - выберите из выпадающего списка тип ссылки, которую требуется вставить: @@ -34,7 +35,7 @@

                      Для добавления гиперссылки можно также щелкнуть правой кнопкой мыши там, где требуется добавить гиперссылку, и выбрать в контекстном меню команду Гиперссылка или использовать сочетание клавиш Ctrl+K.

                      Примечание: также можно выделить мышью или с помощью клавиатуры символ, слово или словосочетание и - щелкнуть по значку Добавить гиперссылку Значок Добавить гиперссылку на верхней панели инструментов или щелкнуть по выделенному элементу правой кнопкой мыши и выбрать в меню опцию Гиперссылка. + щелкнуть по значку Значок Гиперссылка Гиперссылка на вкладке Вставка верхней панели инструментов или щелкнуть по выделенному элементу правой кнопкой мыши и выбрать в меню опцию Гиперссылка. После этого откроется окно, показанное выше, при этом поле Отображать будет содержать выделенный текстовый фрагмент.

                      При наведении курсора на добавленную гиперссылку появится подсказка с заданным текстом. Для перехода по ссылке нажмите клавишу CTRL и щелкните по ссылке в презентации.

                      diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/AlignArrangeObjects.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/AlignArrangeObjects.htm index 46683411e..c3652be3d 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/AlignArrangeObjects.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/AlignArrangeObjects.htm @@ -9,8 +9,9 @@

                      Выравнивание и упорядочивание объектов на слайде

                      -

                      Добавленные автофигуры, изображения, диаграммы или текстовые поля на слайде можно выровнять, сгруппировать, расположить в определенном порядке, распределить по горизонтали и вертикали. Для выполнения любого из этих действий сначала выберите отдельный объект или несколько объектов в области редактирования слайда. Для выделения нескольких объектов удерживайте клавишу Ctrl и щелкайте по нужным объектам левой кнопкой мыши. Чтобы выделить текстовое поле, щелкайте по его границе, а не по тексту внутри него. После этого можно использовать или описанные ниже значки на верхней панели инструментов, или аналогичные команды контекстного меню, вызываемого правой кнопкой мыши.

                      -

                      Чтобы выровнять выбранный объект или объекты, щелкните по значку Выравнивание фигур Значок Выравнивание фигур на верхней панели инструментов и выберите из списка нужный тип выравнивания:

                      +

                      Добавленные автофигуры, изображения, диаграммы или текстовые поля на слайде можно выровнять, сгруппировать, расположить в определенном порядке, распределить по горизонтали и вертикали. Для выполнения любого из этих действий сначала выберите отдельный объект или несколько объектов в области редактирования слайда. Для выделения нескольких объектов удерживайте клавишу Ctrl и щелкайте по нужным объектам левой кнопкой мыши. Чтобы выделить текстовое поле, щелкайте по его границе, а не по тексту внутри него. После этого можно использовать или описанные ниже значки, расположенные на вкладке Главная верхней панели инструментов, или аналогичные команды контекстного меню, вызываемого правой кнопкой мыши.

                      +

                      Выравнивание объектов

                      +

                      Чтобы выровнять выбранный объект или объекты, щелкните по значку Выравнивание фигур Значок Выравнивание фигур на вкладке Главная верхней панели инструментов и выберите из списка нужный тип выравнивания:

                      • Выровнять по левому краю Значок Выровнять по левому краю - чтобы выровнять объект (объекты) по горизонтали по левому краю слайда,
                      • Выровнять по центру Значок Выровнять по центру - чтобы выровнять объект (объекты) по горизонтали по центру слайда,
                      • @@ -19,19 +20,20 @@
                      • Выровнять по середине Значок Выровнять по середине - чтобы выровнять объект (объекты) по вертикали по середине слайда,
                      • Выровнять по нижнему краю Значок Выровнять по нижнему краю - чтобы выровнять объект (объекты) по вертикали по нижнему краю слайда.
                      -

                      Чтобы распределить два или более выбранных объекта по горизонтали или вертикали, щелкните по значку Выравнивание фигур Значок Выравнивание фигур на верхней панели инструментов и выберите из списка нужный тип распределения:

                      +

                      Чтобы распределить два или более выбранных объекта по горизонтали или вертикали, щелкните по значку Выравнивание фигур Значок Выравнивание фигур на вкладке Главная верхней панели инструментов и выберите из списка нужный тип распределения:

                      • Распределить по горизонтали Значок Распределить по горизонтали - чтобы выровнять выбранные объекты по их центрам (между правым и левым краем) по горизонтальному центру слайда
                      • Распределить по вертикали Значок Распределить по вертикали - чтобы выровнять выбранные объекты по их центрам (между верхним и нижним краем) по вертикальному центру слайда.
                      -

                      Чтобы определенным образом расположить выбранный объект или объекты (например, изменить их порядок, если несколько объектов накладываются друг на друга), щелкните по значку Порядок фигур Значок Порядок фигур на верхней панели инструментов и выберите из списка нужный тип расположения:

                      +

                      Упорядочивание объектов

                      +

                      Чтобы определенным образом расположить выбранный объект или объекты (например, изменить их порядок, если несколько объектов накладываются друг на друга), щелкните по значку Порядок фигур Значок Порядок фигур на вкладке Главная верхней панели инструментов и выберите из списка нужный тип расположения:

                        -
                      • Вынести на передний план Значок Вынести на передний план - чтобы переместить выбранный объект (объекты), так что он будет находиться перед всеми остальными объектами,
                      • -
                      • Переместить на задний план Значок Переместить на задний план - чтобы переместить выбранный объект (объекты), так что он будет находиться позади всех остальных объектов,
                      • +
                      • Перенести на передний план Значок Перенести на передний план - чтобы переместить выбранный объект (объекты), так что он будет находиться перед всеми остальными объектами,
                      • +
                      • Перенести на задний план Значок Перенести на задний план - чтобы переместить выбранный объект (объекты), так что он будет находиться позади всех остальных объектов,
                      • Перенести вперед Значок Перенести вперед - чтобы переместить выбранный объект (объекты) на один уровень вперед по отношению к другим объектам.
                      • Перенести назад Значок Перенести назад - чтобы переместить выбранный объект (объекты) на один уровень назад по отношению к другим объектам.
                      -

                      Чтобы сгруппировать два или более выбранных объектов или разгруппировать их, щелкните по значку Порядок фигур Значок Порядок фигур на верхней панели инструментов и выберите из списка нужную опцию:

                      +

                      Чтобы сгруппировать два или более выбранных объектов или разгруппировать их, щелкните по значку Порядок фигур Значок Порядок фигур на вкладке Главная верхней панели инструментов и выберите из списка нужную опцию:

                      • Сгруппировать Значок Сгруппировать - чтобы объединить несколько объектов в группу, так что их можно будет одновременно поворачивать, перемещать, изменять их размер, выравнивать, упорядочивать, копировать, вставлять, форматировать как один объект.
                      • Разгруппировать Значок Разгруппировать - чтобы разгруппировать выбранную группу ранее сгруппированных объектов.
                      • diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ApplyTransitions.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ApplyTransitions.htm index 96b9d4d2d..eb42e1476 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ApplyTransitions.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ApplyTransitions.htm @@ -9,11 +9,11 @@

                        Применение переходов

                        -

                        Переход - это эффект анимации, который появляется между двумя слайдами при смене одного слайда другим во время показа. Можно применить один и тот же переход ко всем слайдам или разные переходы к каждому отдельному слайду и настроить свойства перехода.

                        +

                        Переход - это эффект, который появляется между двумя слайдами при смене одного слайда другим во время показа. Можно применить один и тот же переход ко всем слайдам или разные переходы к каждому отдельному слайду и настроить свойства перехода.

                        Для применения перехода к отдельному слайду или нескольким выделенным слайдам:

                        Вкладка Параметры слайда

                          -
                        1. Выделите в списке слайдов нужный слайд или несколько слайдов, к которым требуется применить переход. На правой боковой панели будет активирована вкладка Параметры слайда. Чтобы ее открыть, щелкните по значку Параметры слайда Значок Параметры слайда справа. +
                        2. Выделите в списке слайдов нужный слайд или несколько слайдов, к которым требуется применить переход. На правой боковой панели будет активирована вкладка Параметры слайда. Чтобы ее открыть, щелкните по значку Параметры слайда Значок Параметры слайда справа. Можно также щелкнуть правой кнопкой мыши по слайду в области редактирования слайда и выбрать в контекстном меню пункт Параметры слайда.
                        3. В выпадающем списке Эффект выберите переход, который надо использовать.

                          Доступны следующие переходы: Выцветание, Задвигание, Появление, Панорама, Открывание, Наплыв, Часы, Масштабирование.

                          diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CopyClearFormatting.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CopyClearFormatting.htm index 6cea995ef..84bcebeac 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CopyClearFormatting.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CopyClearFormatting.htm @@ -13,13 +13,13 @@

                          Чтобы скопировать определенное форматирование текста,

                          1. выделите мышью или с помощью клавиатуры фрагмент текста с форматированием, которое надо скопировать,
                          2. -
                          3. нажмите значок Копировать стиль Копировать стиль на верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля),
                          4. +
                          5. нажмите значок Копировать стиль Копировать стиль на вкладке Главная верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля),
                          6. выделите фрагмент текста, к которому требуется применить то же самое форматирование.

                          Чтобы быстро убрать из текста примененное форматирование,

                          1. выделите фрагмент текста, форматирование которого надо убрать,
                          2. -
                          3. нажмите значок Очистить стиль Очистить стиль на верхней панели инструментов.
                          4. +
                          5. нажмите значок Очистить стиль Очистить стиль на вкладке Главная верхней панели инструментов.
                        diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CopyPasteUndoRedo.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CopyPasteUndoRedo.htm index b426e990b..2a79cd71e 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CopyPasteUndoRedo.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CopyPasteUndoRedo.htm @@ -9,7 +9,7 @@

                        Копирование / вставка данных, отмена / повтор действий

                        -

                        Для вырезания, копирования и вставки выделенных объектов (слайдов, фрагментов текста, автофигур) в текущей презентации или отмены / повтора действий используйте соответствующие команды контекстного меню или значки на верхней панели инструментов:

                        +

                        Для вырезания, копирования и вставки выделенных объектов (слайдов, фрагментов текста, автофигур) в текущей презентации или отмены / повтора действий используйте соответствующие команды контекстного меню или значки, доступные на любой вкладке верхней панели инструментов:

                        • Вырезать – выделите фрагмент текста или объект и используйте опцию контекстного меню Вырезать, чтобы удалить выделенный фрагмент и отправить его в буфер обмена компьютера. Вырезанные данные можно затем вставить в другое место этой же презентации.
                        • Копировать – выделите объект и используйте значок Копировать Значок Копировать чтобы отправить выделенные данные в буфер обмена компьютера. Скопированный объект можно затем вставить в другое место этой же презентации.
                        • @@ -21,7 +21,7 @@
                        • сочетание клавиш Ctrl+V для вставки;
                        • сочетание клавиш Ctrl+X для вырезания.
                        -

                        Для выполнения операций отмены/повтора используйте соответствующие значки на верхней панели инструментов или сочетания клавиш:

                        +

                        Для выполнения операций отмены/повтора используйте соответствующие значки, доступные на любой вкладке верхней панели инструментов, или сочетания клавиш:

                        • Отменить – используйте значок Отменить Значок Отменить, чтобы отменить последнее выполненное действие.
                        • diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CreateLists.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CreateLists.htm index b0c504b24..f00041176 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CreateLists.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/CreateLists.htm @@ -12,6 +12,7 @@

                          Для создания списка в презентации:

                          1. установите курсор в том месте внутри текстового поля, где начнется список (это может быть новая строка или уже введенный текст),
                          2. +
                          3. перейдите на вкладку Главная верхней панели инструментов,
                          4. выберите тип списка, который вы хотите создать:
                            • Неупорядоченный список с маркерами создается с помощью значка Маркированный список Значок Маркированный список, расположенного на верхней панели инструментов
                            • diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertAutoshapes.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertAutoshapes.htm index f1b6af168..f5b2fc1c4 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertAutoshapes.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertAutoshapes.htm @@ -14,7 +14,7 @@

                              Для добавления автофигуры на слайд:

                              1. в списке слайдов слева выберите тот слайд, на который требуется добавить автофигуру,
                              2. -
                              3. на верхней панели инструментов щелкните по значку Вставить автофигуру Значок Вставить автофигуру,
                              4. +
                              5. щелкните по значку Значок Фигура Фигура на вкладке Главная или Вставка верхней панели инструментов,
                              6. выберите одну из доступных групп автофигур: Основные фигуры, Фигурные стрелки, Математические знаки, Схемы, Звезды и ленты, Выноски, Кнопки, Прямоугольники, Линии,
                              7. щелкните по нужной автофигуре внутри выбранной группы,
                              8. в области редактирования слайда установите курсор там, где требуется поместить автофигуру, @@ -90,7 +90,7 @@

                                Соединение автофигур с помощью соединительных линий

                                Автофигуры можно соединять, используя линии с точками соединения, чтобы продемонстрировать зависимости между объектами (например, если вы хотите создать блок-схему). Для этого:

                                  -
                                1. щелкните по значку Вставить автофигуру Значок Вставить автофигуру на верхней панели инструментов,
                                2. +
                                3. щелкните по значку Значок Фигура Фигура на вкладке Главная или Вставка верхней панели инструментов,
                                4. выберите в меню группу Линии,

                                  Фигуры - Линии

                                  diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm index 2c524d495..3fdfe3061 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertCharts.htm @@ -14,7 +14,8 @@

                                  Для вставки диаграммы в презентацию,

                                  1. установите курсор там, где требуется поместить диаграмму,
                                  2. -
                                  3. щелкните по значку Вставить диаграмму Значок Вставить диаграмму на верхней панели инструментов,
                                  4. +
                                  5. перейдите на вкладку Вставка верхней панели инструментов,
                                  6. +
                                  7. щелкните по значку Значок Диаграмма Диаграмма на верхней панели инструментов,
                                  8. выберите из доступных типов диаграммы тот, который вам нужен - гистограмма, график, круговая, линейчатая, с областями, точечная, биржевая,

                                    Обратите внимание: для Гистограмм, Графиков, Круговых или Линейчатых диаграмм также доступен формат 3D.

                                  9. @@ -219,7 +220,7 @@

                                    Редактирование элементов диаграммы

                                    Чтобы изменить Заголовок диаграммы, выделите мышью стандартный текст и введите вместо него свой собственный.

                                    -

                                    Чтобы изменить форматирование шрифта внутри текстовых элементов, таких как заголовок диаграммы, названия осей, элементы условных обозначений, подписи данных и так далее, выделите нужный текстовый элемент, щелкнув по нему левой кнопкой мыши. Затем используйте значки на верхней панели инструментов, чтобы изменить тип, стиль, размер или цвет шрифта.

                                    +

                                    Чтобы изменить форматирование шрифта внутри текстовых элементов, таких как заголовок диаграммы, названия осей, элементы условных обозначений, подписи данных и так далее, выделите нужный текстовый элемент, щелкнув по нему левой кнопкой мыши. Затем используйте значки на вкладке Главная верхней панели инструментов, чтобы изменить тип, стиль, размер или цвет шрифта.

                                    Чтобы удалить элемент диаграммы, выделите его, щелкнув левой кнопкой мыши, и нажмите клавишу Delete на клавиатуре.

                                    Можно также поворачивать 3D-диаграммы с помощью мыши. Щелкните левой кнопкой мыши внутри области построения диаграммы и удерживайте кнопку мыши до появления голубой пунктирной рамки. Не отпуская кнопку мыши, перетащите курсор, чтобы изменить ориентацию 3D-диаграммы.

                                    3D-диаграмма

                                    diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm index 9461c996e..a36373195 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm @@ -13,7 +13,8 @@

                                    Добавление новой формулы

                                    Чтобы вставить формулу из коллекции,

                                      -
                                    1. нажмите на стрелку рядом со значком Вставить формулу Значок Вставить формулу на верхней панели инструментов,
                                    2. +
                                    3. перейдите на вкладку Вставка верхней панели инструментов,
                                    4. +
                                    5. нажмите на стрелку рядом со значком Значок Формула Формула на верхней панели инструментов,
                                    6. в открывшемся выпадающем списке выберите нужную категорию формул. В настоящее время доступны следующие категории: Символы, Дроби, Индексы, Радикалы, Интегралы, Крупные операторы, Скобки, Функции, Диакритические знаки, Пределы и логарифмы, Операторы, Матрицы,
                                    7. щелкните по определенному символу/формуле в соответствующем наборе шаблонов.
                                    @@ -29,7 +30,7 @@ Когда курсор будет установлен в нужную позицию, можно заполнить поле:
                                    • введите требуемое цифровое или буквенное значение с помощью клавиатуры,
                                    • -
                                    • вставьте специальный символ, используя палитру Символы из меню Вставить формулу Значок Вставить формулу на верхней панели инструментов,
                                    • +
                                    • вставьте специальный символ, используя палитру Символы из меню Значок Формула Формула на вкладке Вставка верхней панели инструментов,
                                    • добавьте шаблон другой формулы с палитры, чтобы создать сложную вложенную формулу. Размер начальной формулы будет автоматически изменен в соответствии с содержимым. Размер элементов вложенной формулы зависит от размера поля начальной формулы, но не может быть меньше, чем размер мелкого индекса.

                                    @@ -44,9 +45,9 @@

                                    При вводе значений математических выражений не требуется использовать клавишу Пробел, так как пробелы между символами и знаками действий устанавливаются автоматически.

                                    Если формула слишком длинная и не помещается на одной строке внутри рамки формулы, перенос на другую строку в процессе ввода осуществляется автоматически. Можно также вставить перенос строки в строго определенном месте, щелкнув правой кнопкой мыши по математическому оператору и выбрав из контекстного меню пункт Вставить принудительный разрыв. Выбранный оператор будет перенесен на новую строку. Чтобы удалить добавленный принудительный разрыв строки, щелкните правой кнопкой мыши по математическому оператору в начале новой строки и выберите пункт меню Удалить принудительный разрыв.

                                    Форматирование формул

                                    -

                                    По умолчанию формула внутри рамки горизонтально выровнена по центру, а вертикально выровнена по верхнему краю рамки формулы. Чтобы изменить горизонтальное или вертикальное выравнивание, установите курсор внутри рамки формулы (контуры рамки будут отображены как пунктирные линии) и используйте соответствующие значки на верхней панели инструментов.

                                    -

                                    Чтобы увеличить или уменьшить размер шрифта в формуле, щелкните мышью внутри рамки формулы и выберите нужный размер шрифта из списка на верхней панели инструментов. Все элементы формулы изменятся соответственно.

                                    -

                                    По умолчанию буквы в формуле форматируются курсивом. В случае необходимости можно изменить стиль шрифта (выделение жирным, курсив, зачеркивание) или цвет для всей формулы или ее части. Подчеркивание можно применить только ко всей формуле, а не к отдельным символам. Выделите нужную часть формулы путем перетаскивания. Выделенная часть будет подсвечена голубым цветом. Затем используйте нужные кнопки на верхней панели инструментов, чтобы отформатировать выделенный фрагмент. Например, можно убрать форматирование курсивом для обычных слов, которые не являются переменными или константами.

                                    +

                                    По умолчанию формула внутри рамки горизонтально выровнена по центру, а вертикально выровнена по верхнему краю рамки формулы. Чтобы изменить горизонтальное или вертикальное выравнивание, установите курсор внутри рамки формулы (контуры рамки будут отображены как пунктирные линии) и используйте соответствующие значки на вкладке Главная верхней панели инструментов.

                                    +

                                    Чтобы увеличить или уменьшить размер шрифта в формуле, щелкните мышью внутри рамки формулы и выберите нужный размер шрифта из списка на вкладке Главная верхней панели инструментов. Все элементы формулы изменятся соответственно.

                                    +

                                    По умолчанию буквы в формуле форматируются курсивом. В случае необходимости можно изменить стиль шрифта (выделение жирным, курсив, зачеркивание) или цвет для всей формулы или ее части. Подчеркивание можно применить только ко всей формуле, а не к отдельным символам. Выделите нужную часть формулы путем перетаскивания. Выделенная часть будет подсвечена голубым цветом. Затем используйте нужные кнопки на вкладке Главная верхней панели инструментов, чтобы отформатировать выделенный фрагмент. Например, можно убрать форматирование курсивом для обычных слов, которые не являются переменными или константами.

                                    Редактируемая формула

                                    Для изменения некоторых элементов формул можно также использовать пункты контекстного меню:

                                      diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertImages.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertImages.htm index c2e241167..85ac888e5 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertImages.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertImages.htm @@ -15,7 +15,7 @@

                                      Для добавления изображения на слайд:

                                      1. в списке слайдов слева выберите тот слайд, на который требуется добавить изображение,
                                      2. -
                                      3. на верхней панели инструментов щелкните по значку Вставить изображение Значок Вставить изображение,
                                      4. +
                                      5. щелкните по значку Значок Изображение Изображение на вкладке Главная или Вставка верхней панели инструментов,
                                      6. для загрузки изображения выберите одну из следующих опций:
                                        • при выборе опции Изображение из файла откроется стандартное диалоговое окно Windows для выбора файлов. Выберите нужный файл на жестком диске компьютера и нажмите кнопку Открыть
                                        • diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertTables.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertTables.htm index dea7b3cb5..3d4fdefbc 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertTables.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertTables.htm @@ -14,7 +14,8 @@

                                          Для вставки таблицы на слайд:

                                          1. выберите слайд, на который надо добавить таблицу,
                                          2. -
                                          3. щелкните по значку Вставить таблицу Значок Вставить таблицу на верхней панели инструментов,
                                          4. +
                                          5. перейдите на вкладку Вставка верхней панели инструментов,
                                          6. +
                                          7. нажмите значок Значок Таблица Таблица на верхней панели инструментов,
                                          8. выберите опцию для создания таблицы:
                                            • или таблица со стандартным количеством ячеек (максимум 10 на 8 ячеек)

                                              @@ -73,7 +74,7 @@

                                              Свойства таблицы

                                              Вкладка Альтернативный текст позволяет задать Заголовок и Описание, которые будут зачитываться для людей с нарушениями зрения или когнитивными нарушениями, чтобы помочь им лучше понять, какую информацию содержит таблица.


                                              -

                                              Для форматирования введенного текста внутри ячеек таблицы можно использовать значки на верхней панели инструментов. Контекстное меню, вызываемое правым щелчком мыши по таблице, содержит две дополнительных опции:

                                              +

                                              Для форматирования введенного текста внутри ячеек таблицы можно использовать значки на вкладке Главная верхней панели инструментов. Контекстное меню, вызываемое правым щелчком мыши по таблице, содержит две дополнительных опции:

                                              • Вертикальное выравнивание в ячейках - позволяет задать предпочтительный тип вертикального выравнивания текста внутри выделенных ячеек: По верхнему краю, По центру, или По нижнему краю.
                                              • Гиперссылка - позволяет вставить гиперссылку в выделенную ячейку.
                                              • diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertText.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertText.htm index d3e88e0ed..36c6ce5ed 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertText.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertText.htm @@ -14,19 +14,14 @@

                                                Новый текст можно добавить тремя разными способами:

                                                • Добавить фрагмент текста внутри соответствующей текстовой рамки предусмотренной на макете слайда. Для этого установите курсор внутри текстовой рамки и напишите свой текст или вставьте его, используя сочетание клавиш Ctrl+V, вместо соответствующего текста по умолчанию.
                                                • -
                                                • Добавить фрагмент текста в любом месте на слайде. Можно вставить надпись (прямоугольную рамку, внутри которой вводится текст) или объект Text Art (текстовое поле с предварительно заданным стилем и цветом шрифта, позволяющее применять текстовые эффекты). Для этого: -
                                                    -
                                                  1. щелкните по значку Вставить текст Значок Вставить текст на верхней панели инструментов,
                                                  2. -
                                                  3. выберите нужный тип текстового объекта: -
                                                      +
                                                    • Добавить фрагмент текста в любом месте на слайде. Можно вставить надпись (прямоугольную рамку, внутри которой вводится текст) или объект Text Art (текстовое поле с предварительно заданным стилем и цветом шрифта, позволяющее применять текстовые эффекты). В зависимости от требуемого типа текстового объекта можно сделать следующее: +
                                                      • - выберите в меню опцию Вставить надпись, затем щелкните там, где требуется поместить надпись, удерживайте кнопку мыши и перетаскивайте границу текстового поля, чтобы задать его размер. Когда вы отпустите кнопку мыши, в добавленном текстовом поле появится курсор, и вы сможете ввести свой текст. -

                                                        Примечание: надпись можно также вставить, если щелкнуть по значку Вставить автофигуру Значок Вставить автофигуру на верхней панели инструментов и выбрать фигуру Автофигура Вставка текста из группы Основные фигуры.

                                                        + чтобы добавить текстовое поле, щелкните по значку Значок Текст Текст на вкладке Главная или Вставка верхней панели инструментов, затем щелкните там, где требуется поместить надпись, удерживайте кнопку мыши и перетаскивайте границу текстового поля, чтобы задать его размер. Когда вы отпустите кнопку мыши, в добавленном текстовом поле появится курсор, и вы сможете ввести свой текст. +

                                                        Примечание: надпись можно также вставить, если щелкнуть по значку Значок Фигура Фигура на верхней панели инструментов и выбрать фигуру Автофигура Вставка текста из группы Основные фигуры.

                                                      • -
                                                      • выберите в меню опцию Вставить объект Text Art, затем щелкните по нужному шаблону стиля – объект Text Art будет добавлен в центре слайда. Выделите мышью стандартный текст внутри текстового поля и напишите вместо него свой текст.
                                                      • +
                                                      • чтобы добавить объект Text Art, щелкните по значку Значок Text Art Text Art на вкладке Вставка верхней панели инструментов, затем щелкните по нужному шаблону стиля – объект Text Art будет добавлен в центре слайда. Выделите мышью стандартный текст внутри текстового поля и напишите вместо него свой текст.
                                                      -
                                                    • -
                                                • Добавить фрагмент текста внутри автофигуры. Выделите фигуру и начинайте печатать текст.
                                                @@ -51,7 +46,7 @@

                                                Горизонтально текст выравнивается четырьмя способами: по левому краю, по правому краю, по центру или по ширине. Для этого:

                                                1. установите курсор в том месте, где требуется применить выравнивание (это может быть новая строка или уже введенный текст),
                                                2. -
                                                3. разверните список Горизонтальное выравнивание Значок Горизонтальное выравнивание на верхней панели инструментов,
                                                4. +
                                                5. разверните список Горизонтальное выравнивание Значок Горизонтальное выравнивание на вкладке Главная верхней панели инструментов,
                                                6. выберите тип выравнивания, который вы хотите применить:
                                                  • опция Выравнивание текста по левому краю Значок Выравнивание текста по левому краю позволяет выровнять текст по левому краю текстового поля (правый край остается невыровненным).
                                                  • @@ -64,7 +59,7 @@

                                                    Вертикально текст выравнивается тремя способами: по верхнему краю, по середине или по нижнему краю. Для этого:

                                                    1. установите курсор в том месте, где требуется применить выравнивание (это может быть новая строка или уже введенный текст),
                                                    2. -
                                                    3. разверните список Вертикальное выравнивание Значок Вертикальное выравнивание на верхней панели инструментов,
                                                    4. +
                                                    5. разверните список Вертикальное выравнивание Значок Вертикальное выравнивание на вкладке Главная верхней панели инструментов,
                                                    6. выберите тип выравнивания, который вы хотите применить:
                                                      • опция Выравнивание текста по верхнему краю Значок Выравнивание текста по верхнему краю позволяет выровнять текст по верхнему краю текстового поля.
                                                      • @@ -78,12 +73,12 @@

                                                        Чтобы повернуть текст внутри текстового поля, щелкните по тексту правой кнопкой мыши, выберите опцию Направление текста, а затем выберите один из доступных вариантов: Горизонтальное (выбран по умолчанию), Поворот на 90° (задает вертикальное направление, сверху вниз) или Поворот на 270° (задает вертикальное направление, снизу вверх).


                                                        Настройка типа, размера, цвета шрифта и применение стилей оформления

                                                        -

                                                        Можно выбрать тип, размер и цвет шрифта, а также применить различные стили оформления шрифта, используя соответствующие значки, расположенные на верхней панели инструментов.

                                                        +

                                                        Можно выбрать тип, размер и цвет шрифта, а также применить различные стили оформления шрифта, используя соответствующие значки, расположенные на вкладке Главная верхней панели инструментов.

                                                        Примечание: если необходимо применить форматирование к тексту, который уже есть в презентации, выделите его мышью или с помощью клавиатуры, а затем примените форматирование.

                      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.
                      Font ColorFont ColorFont colorFont color Is used to change the color of the letters/characters in the text. Click the downward arrow next to the icon to select the color.
                      Распечатать презентацию на одном из доступных принтеров или сохранить в файл.
                      Сохранить как (Загрузить как)Скачать как... Ctrl+Shift+SСохранить редактируемую презентацию на жестком диске компьютера в одном из поддерживаемых форматов: PDF, PPTX.Сохранить редактируемую презентацию на жестком диске компьютера в одном из поддерживаемых форматов: PDF, PPTX, ODP.
                      Полноэкранный режим
                      Увеличить масштабCtrl++Ctrl+плюс (+) Увеличить масштаб редактируемой презентации.
                      Уменьшить масштабCtrl+-Ctrl+минус (-) Уменьшить масштаб редактируемой презентации.
                      Выполнение действий со слайдами
                      Выполнение действий со слайдами
                      Новый слайд Ctrl+M
                      Перейти вперед ENTER, PAGE DOWN, СТРЕЛКА ВПРАВО, СТРЕЛКА ВНИЗ или ПРОБЕЛПоказать следующий эффект анимации или перейти к следующему слайду.Показать следующий эффект перехода или перейти к следующему слайду.
                      Перейти назад PAGE UP, СТРЕЛКА ВЛЕВО, СТРЕЛКА ВВЕРХПоказать предыдущий эффект анимации или вернуться к предыдущему слайду.Показать предыдущий эффект перехода или вернуться к предыдущему слайду.
                      Закрыть просмотр
                      Подстрочные знакиCtrl+.(точка)Ctrl+точка (.) Сделать выделенный фрагмент текста мельче и поместить его в нижней части строки, например, как в химических формулах.
                      Надстрочные знакиCtrl+,(запятая)Ctrl+запятая (,) Сделать выделенный фрагмент текста мельче и поместить его в верхней части строки, например, как в дробях.
                      - - + + @@ -145,8 +140,8 @@ -

                      Чтобы быстро изменить междустрочный интервал в текущем абзаце, можно также использовать значок Междустрочный интервал Междустрочный интервал на верхней панели инструментов, выбрав нужное значение из списка: 1.0, 1.15, 1.5, 2.0, 2.5, или 3.0 строки.

                      -

                      Чтобы изменить смещение абзаца от левого края текстового поля, установите курсор в пределах нужного абзаца или выделите мышью несколько абзацев и используйте соответствующие значки на верхней панели инструментов: Уменьшить отступ Уменьшить отступ и Увеличить отступ Увеличить отступ.

                      +

                      Чтобы быстро изменить междустрочный интервал в текущем абзаце, можно также использовать значок Междустрочный интервал Междустрочный интервал на вкладке Главная верхней панели инструментов, выбрав нужное значение из списка: 1.0, 1.15, 1.5, 2.0, 2.5, или 3.0 строки.

                      +

                      Чтобы изменить смещение абзаца от левого края текстового поля, установите курсор в пределах нужного абзаца или выделите мышью несколько абзацев и используйте соответствующие значки на вкладке Главная верхней панели инструментов: Уменьшить отступ Уменьшить отступ и Увеличить отступ Увеличить отступ.


                      Можно также изменить дополнительные параметры абзаца. Установите курсор в пределах нужного абзаца - на правой боковой панели будет активирована вкладка Значок Параметры текста Параметры текста. Нажмите на ссылку Дополнительные параметры. Откроется окно свойств абзаца:

                      Свойства абзаца - вкладка Отступы и положение @@ -169,7 +164,7 @@

                      - Примечание: если вы не видите линеек, щелкните по значку Параметры представления Значок Параметры представления в правом верхнем углу верхней панели инструментов и снимите отметку с опции Скрыть линейки, чтобы отобразить их.

                      + Примечание: если вы не видите линеек, перейдите на вкладку Главная верхней панели инструментов, щелкните по значку Параметры представленияЗначок Параметры представления в правом верхнем углу и снимите отметку с опции Скрыть линейки, чтобы отобразить их.

                      Свойства абзаца - вкладка Шрифт

                      Вкладка Шрифт содержит следующие параметры:

                        @@ -208,7 +203,7 @@

                        Горизонтальная линейка с добавленными позициями табуляции

                        -

                        Примечание: если вы не видите линеек, щелкните по значку Параметры представления Значок Параметры представления в правом верхнем углу верхней панели инструментов и снимите отметку с опции Скрыть линейки, чтобы отобразить их.

                        +

                        Примечание: если вы не видите линеек, перейдите на вкладку Главная верхней панели инструментов, щелкните по значку Параметры представления Значок Параметры представления в правом верхнем углу и снимите отметку с опции Скрыть линейки, чтобы отобразить их.

                        Изменение стиля объекта Text Art

                        diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ManageSlides.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ManageSlides.htm index fe3e38b19..aaed8c558 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ManageSlides.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ManageSlides.htm @@ -10,15 +10,20 @@

                        Управление слайдами

                        -

                        По умолчанию новая созданная презентация содержит один пустой титульный слайд.

                        -

                        Для создания нового слайда:

                        +

                        По умолчанию новая созданная презентация содержит один пустой титульный слайд. Вы можете создавать новые слайды, копировать слайды, чтобы затем можно было вставить их в другое место в списке слайдов, дублировать слайды, перемещать слайды, чтобы изменить их порядок в списке, удалять ненужные слайды, помечать отдельные слайды как скрытые.

                        +

                        Для создания нового слайда с макетом Title and Content (Заголовок и объект):

                        +
                          +
                        • щелкните по значку Значок Добавить слайд Добавить слайд на вкладке Главная или Вставка верхней панели инструментов или
                        • +
                        • щелкните правой кнопкой мыши по любому слайду в списке и выберите в контекстном меню пункт Новый слайд или
                        • +
                        • нажмите сочетание клавиш Ctrl+M.
                        • +
                        +

                        Для создания нового слайда с другим макетом:

                          -
                        1. щелкните по значку Добавить слайд Значок Добавить слайд на верхней панели инструментов,
                        2. +
                        3. нажмите на стрелку рядом со значком Значок Добавить слайд Добавить слайд на вкладке Главная или Вставка верхней панели инструментов,
                        4. выберите в меню слайд с нужным макетом.

                          Примечание: вы в любое время сможете изменить макет добавленного слайда. Чтобы получить дополнительную информацию о том, как это сделать, обратитесь к разделу Настройка параметров слайда.

                        -

                        Можно также щелкнуть правой кнопкой мыши по любому слайду в списке и выбрать в контекстном меню пункт Новый слайд.

                        Новый слайд будет вставлен после выделенного слайда в списке существующих слайдов слева.

                        Для дублирования слайда:

                          @@ -43,6 +48,14 @@
                        1. в списке существующих слайдов слева щелкните правой кнопкой мыши по слайду, который требуется удалить,
                        2. в контекстном меню выберите пункт Удалить слайд.
                        +

                        Для скрытия слайда:

                        +
                          +
                        1. в списке существующих слайдов слева щелкните правой кнопкой мыши по слайду, который требуется скрыть,
                        2. +
                        3. в контекстном меню выберите пункт Скрыть слайд.
                        4. +
                        +

                        Номер, соответствующий скрытому слайду, будет перечеркнут в списке слайдов слева. Чтобы отображать скрытый слайд как обычный слайд в списке, щелкните по опции Скрыть слайд еще раз.

                        +

                        Скрытый слайд

                        +

                        Примечание: эту опцию можно использовать, если вы не хотите демонстрировать зрителям некоторые слайды, но вам требуется, чтобы в случае необходимости к этим слайдам можно было получить доступ. При запуске показа слайдов в режиме докладчика все имеющиеся слайды отображаются в списке слева, при этом номера скрытых слайдов перечеркнуты. Для пропуска скрытого слайда, чтобы он не отображался при показе слайдов зрителям, вручную выберите следующий слайд в списке существующих слайдов слева. Если вы захотите показать зрителям слайд, помеченный как скрытый, просто щелкните по нему в списке слайдов слева - слайд будет отображен. При запуске показа слайдов в режиме Просмотра будут отображаться все слайды (включая те, которые были помечены как скрытые).

                        Для выделения всех существующих слайдов сразу:

                        1. щелкните правой кнопкой мыши по любому слайду в списке существующих слайдов слева,
                        2. @@ -53,6 +66,7 @@
                        3. удерживайте клавишу Ctrl,
                        4. выделите нужные слайды в списке существующих слайдов слева, щелкая по ним левой кнопкой мыши.
                        +

                        Примечание: все сочетания клавиш, которые можно использовать для управления слайдами, перечислены на странице Сочетания клавиш.

                        \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm index 07b3cf5da..f865e0aa8 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm @@ -12,16 +12,16 @@

                        Когда онлайн-редактор презентаций открыт, Вы можете сразу же перейти к уже существующей презентации, которую Вы недавно редактировали, создать новую, или вернуться к списку существующих презентаций.

                        Для создания новой презентации в онлайн-редакторе презентаций:

                          -
                        1. щелкните по значку Файл Значок Файл на левой боковой панели,
                        2. +
                        3. нажмите на вкладку Файл на верхней панели инструментов,
                        4. выберите опцию Создать новую.

                        Для открытия недавно отредактированной презентации в онлайн-редакторе презентаций:

                          -
                        1. щелкните по значку Файл Значок Файл на левой боковой панели,
                        2. +
                        3. нажмите на вкладку Файл на верхней панели инструментов,
                        4. выберите опцию Открыть последние,
                        5. выберите нужную презентацию из списка недавно отредактированных презентаций.
                        -

                        Для возврата к списку существующих презентаций нажмите на ссылку Перейти к Документам в правом верхнем углу или используйте значок Файл Значок Файл на левой боковой панели и выберите опцию Перейти к Документам.

                        +

                        Для возврата к списку существующих презентаций нажмите на значок Перейти к Документам Перейти к Документам в правой части шапки редактора. Можно также перейти на вкладку Файл на верхней панели инструментов и выбрать опцию Перейти к Документам.

                        \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/PreviewPresentation.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/PreviewPresentation.htm index e4e22566e..edb4209c1 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/PreviewPresentation.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/PreviewPresentation.htm @@ -10,20 +10,53 @@

                        Просмотр презентации

                        -

                        Чтобы просмотреть презентацию, которую вы в данный момент редактируете, щелкните по значку Начать показ слайдов Значок Начать показ слайдов на верхней панели инструментов или в левом нижнем углу. Можно также выбрать определенный слайд в списке слайдов слева, щелкнуть по нему правой кнопкой мыши и выбрать в контекстном меню пункт Начать показ слайдов.

                        -

                        Просмотр начнется с выделенного в данный момент слайда. В режиме просмотра можно использовать следующие элементы управления в левом нижнем углу:

                        +

                        Запуск просмотра слайдов

                        +

                        Чтобы просмотреть презентацию, которую вы в данный момент редактируете, можно сделать следующее:

                          -
                        • кнопка Приостановить презентацию Значок Приостановить презентацию позволяет приостановить просмотр.
                        • -
                        • кнопка Запустить презентацию Значок Запустить презентацию позволяет возобновить просмотр.
                        • -
                        • кнопка Следующий слайд Значок Следующий слайд позволяет перейти к следующему слайду.
                        • -
                        • кнопка Предыдущий слайд Значок Предыдущий слайд позволяет вернуться к предыдущему слайду. -

                          Примечание: для перехода к определенному слайду в режиме просмотра щелкните по Указателю номера слайда и введите в открывшемся окне номер нужного слайда.

                          +
                        • щелкните по значку Начать показ слайдов Значок Начать показ слайдов на вкладке Главная верхней панели инструментов или в левой части строки состояния или
                        • +
                        • выберите определенный слайд в списке слайдов слева, щелкните по нему правой кнопкой мыши и выберите в контекстном меню пункт Начать показ слайдов.
                        • +
                        +

                        Просмотр начнется с выделенного в данный момент слайда.

                        +

                        Можно также нажать на стрелку рядом со значком Начать показ слайдов Значок Начать показ слайдов на вкладке Главная верхней панели инструментов и выбрать одну из доступных опций:

                        +
                          +
                        • Показ слайдов с начала - чтобы начать показ слайдов с самого первого слайда,
                        • +
                        • Показ слайдов с текущего слайда - чтобы начать показ слайдов со слайда, выделенного в данный момент,
                        • +
                        • Показ слайдов в режиме докладчика - чтобы начать показ слайдов в режиме докладчика, позволяющем демонстрировать презентацию зрителям, не показывая заметок к слайдам, и одновременно просматривать презентацию с заметками к слайдам на другом мониторе.
                        • +
                        • + Параметры показа слайдов - чтобы открыть окно настроек, позволяющее задать только один параметр: Непрерывный цикл до нажатия клавиши 'Esc'. Отметьте эту опцию в случае необходимости и нажмите кнопку OK. Если эта опция включена, презентация будет отображаться до тех пор, пока вы не нажмете клавишу Escape на клавиатуре, то есть, при достижении последнего слайда в презентации вы сможете снова перейти к первому слайду и так далее. Если эта опция отключена, то при достижении последнего слайда в презентации появится черный экран с информацией о том, что презентация завершена и вы можете выйти из режима просмотра. +

                          Окно Параметры показа слайдов

                        • +
                        +

                        Использование режима просмотра

                        +

                        В режиме просмотра можно использовать следующие элементы управления, расположенные в левом нижнем углу:

                        +

                        Элементы управления в режиме просмотра

                        +
                          +
                        • кнопка Предыдущий слайд Значок Предыдущий слайд позволяет вернуться к предыдущему слайду.
                        • +
                        • кнопка Приостановить презентацию Значок Приостановить презентацию позволяет приостановить просмотр. После нажатия эта кнопка превращается в кнопку Значок Запустить презентацию.
                        • +
                        • кнопка Запустить презентацию Значок Запустить презентацию позволяет возобновить просмотр. После нажатия эта кнопка превращается в кнопку Значок Приостановить презентацию.
                        • +
                        • кнопка Следующий слайд Значок Следующий слайд позволяет перейти к следующему слайду.
                        • +
                        • Указатель номера слайда отображает номер текущего слайда, а также общее количество слайдов в презентации. Для перехода к определенному слайду в режиме просмотра щелкните по Указателю номера слайда, введите в открывшемся окне номер нужного слайда и нажмите клавишу Enter.
                        • кнопка Полноэкранный режим Значок Полноэкранный режим позволяет перейти в полноэкранный режим.
                        • кнопка Выйти из полноэкранного режима Значок Выйти из полноэкранного режима позволяет выйти из полноэкранного режима.
                        • кнопка Завершить показ слайдов Значок Завершить показ слайдов позволяет выйти из режима просмотра.
                        -

                        Для навигации по слайдам в режиме просмотра можно также использовать сочетания клавиш.

                        +

                        Для навигации по слайдам в режиме просмотра можно также использовать сочетания клавиш.

                        +

                        Использование режима докладчика

                        +

                        В режиме докладчика вы можете просматривать презентацию с заметками к слайдам в отдельном окне, и одновременно демонстрировать презентацию зрителям на другом мониторе, не показывая заметок к слайдам. Заметки к каждому слайду отображаются под областью просмотра слайда.

                        +

                        Для навигации по слайдам можно использовать кнопки Значок Предыдущий слайд и Значок Следующий слайд или щелкать по слайдам в списке слева. Номера скрытых слайдов в списке перечеркнуты. Для пропуска скрытого слайда, чтобы он не отображался при показе слайдов зрителям, вручную выберите следующий слайд в списке существующих слайдов слева. Если вы захотите показать зрителям слайд, помеченный как скрытый, просто щелкните по нему в списке слайдов слева - слайд будет отображен.

                        +

                        Можно использовать следующие элементы управления, расположенные под областью просмотра слайда:

                        +

                        Элементы управления в режиме докладчика

                        +
                          +
                        • Таймер показывает истекшее время презентации в формате чч.мм.сс.
                        • +
                        • кнопка Приостановить презентацию Значок Приостановить презентацию позволяет приостановить просмотр. После нажатия эта кнопка превращается в кнопку Значок Запустить презентацию.
                        • +
                        • кнопка Запустить презентацию Значок Запустить презентацию позволяет возобновить просмотр. После нажатия эта кнопка превращается в кнопку Значок Приостановить презентацию.
                        • +
                        • кнопка Сброс позволяет сбросить истекшее время презентации.
                        • +
                        • кнопка Предыдущий слайд Значок Предыдущий слайд позволяет вернуться к предыдущему слайду.
                        • +
                        • кнопка Следующий слайд Значок Следующий слайд позволяет перейти к следующему слайду.
                        • +
                        • Указатель номера слайда отображает номер текущего слайда, а также общее количество слайдов в презентации.
                        • +
                        • кнопка Указка Значок Указка позволяет выделить что-то на экране при показе презентации. Когда эта опция включена, кнопка выглядит следующим образом: Значок Указка. Чтобы указать на какие-то объекты, наведите курсор мыши на область просмотра слайда и перемещайте указку по слайду. Указка будет выглядеть так: Значок Указка. Чтобы отключить эту опцию, нажмите кнопку Значок Указка еще раз.
                        • +
                        • кнопка Завершить показ слайдов позволяет выйти из режима докладчика.
                        • +
                        \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm index bf1edf764..4428df96c 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm @@ -16,19 +16,19 @@
                        • щелкните по значку Сохранить Значок Сохранить на верхней панели инструментов, или
                        • используйте сочетание клавиш Ctrl+S, или
                        • -
                        • щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Сохранить.
                        • +
                        • нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Сохранить.

                        Чтобы распечатать текущую презентацию,

                        • щелкните по значку Печать Значок Печать на верхней панели инструментов, или
                        • используйте сочетание клавиш Ctrl+P, или
                        • -
                        • щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Печать.
                        • +
                        • нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Печать.

                        После этого на основе данной презентации будет сгенерирован файл PDF. Его можно открыть и распечатать или сохранить на жестком диске компьютера или съемном носителе, чтобы распечатать позже.

                        Чтобы скачать готовую презентацию и сохранить ее на жестком диске компьютера,

                          -
                        1. щелкните по значку Файл Значок Файл на левой боковой панели,
                        2. +
                        3. нажмите на вкладку Файл на верхней панели инструментов,
                        4. выберите опцию Скачать как...,
                        5. выберите один из доступных форматов в зависимости от того, что вам нужно: PDF, PPTX или ODP.
                        diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/SetSlideParameters.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/SetSlideParameters.htm index a3086aa3d..5769d33b6 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/SetSlideParameters.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/SetSlideParameters.htm @@ -10,22 +10,24 @@

                        Настройка параметров слайда

                        -

                        Чтобы настроить внешний вид презентации, можно выбрать тему, цветовую схему и размер слайдов для всей презентации, а также изменить заливку фона или макет слайда для каждого отдельного слайда. Также можно применить переходы между слайдами.

                        +

                        Чтобы настроить внешний вид презентации, можно выбрать тему, цветовую схему, размер и ориентацию слайдов для всей презентации, изменить заливку фона или макет слайда для каждого отдельного слайда, применить переходы между слайдами. Также можно добавить поясняющие заметки к каждому слайду, которые могут пригодиться при показе презентации в режиме докладчика.

                        • Темы позволяют быстро изменить дизайн презентации, а именно оформление фона слайдов, предварительно заданные шрифты для заголовков и текстов и цветовую схему, которая используется для элементов презентации. - Для выбора темы презентации щелкните по нужной готовой теме из галереи тем в правой части верхней панели инструментов. Выбранная тема будет применена ко всем слайдам, если вы предварительно не выделили определенные слайды, к которым надо применить эту тему. + Для выбора темы презентации щелкните по нужной готовой теме из галереи тем, расположенной в правой части вкладки Главная верхней панели инструментов. Выбранная тема будет применена ко всем слайдам, если вы предварительно не выделили определенные слайды, к которым надо применить эту тему.

                          Галерея тем

                          +

                          Чтобы изменить выбранную тему для одного или нескольких слайдов, щелкните правой кнопкой мыши по выделенным слайдам в списке слева (или щелкните правой кнопкой мыши по слайду в области редактирования слайда), выберите в контекстном меню пункт Изменить тему, а затем выберите нужную тему.

                        • Цветовые схемы влияют на предварительно заданные цвета, используемые для элементов презентации (шрифтов, линий, заливок и т.д.) и позволяют обеспечить сочетаемость цветов во всей презентации. - Для изменения цветовой схемы презентации щелкните по значку Изменение цветовой схемы Значок Изменение цветовой схемы на верхней панели инструментов и выберите нужную схему из выпадающего списка. Выбранная схема будет применена ко всем слайдам. + Для изменения цветовой схемы презентации щелкните по значку Изменение цветовой схемы Значок Изменение цветовой схемы на вкладке Главная верхней панели инструментов и выберите нужную схему из выпадающего списка. Выбранная схема будет применена ко всем слайдам.

                          Цветовые схемы

                        • -
                        • Для изменения размера всех слайдов в презентации, щелкните по значку Выбор размеров слайдов Значок Выбор размеров слайдов на верхней панели инструментов и выберите нужную опцию из выпадающего списка. Можно выбрать: +
                        • Для изменения размера всех слайдов в презентации, щелкните по значку Выбор размеров слайдов Значок Выбор размеров слайдов на вкладке Главная верхней панели инструментов и выберите нужную опцию из выпадающего списка. Можно выбрать:
                          • один из двух быстродоступных пресетов - Стандартный (4:3) или Широкоэкранный (16:9),
                          • команду Дополнительные параметры, которая вызывает окно Настройки размера слайда, где можно выбрать один из имеющихся предустановленных размеров или задать Пользовательский размер, указав нужные значения Ширины и Высоты.

                            Окно Настройки размера слайда

                            Доступны следующие предустановленные размеры: Стандартный (4:3), Широкоэкранный (16:9), Широкоэкранный (16:10), Лист Letter (8.5x11 дюймов), Лист Ledger (11x17 дюймов), Лист A3 (297x420 мм), Лист A4 (210x297 мм), Лист B4 (ICO) (250x353 мм), Лист B5 (ICO) (176x250 мм), Слайды 35 мм, Прозрачная пленка, Баннер.

                            +

                            Меню Ориентация слайда позволяет изменить выбранный в настоящий момент тип ориентации слайда. По умолчанию используется Альбомная ориентация, которую можно изменить на Книжную.

                        • @@ -47,7 +49,9 @@
                        • Переходы помогают сделать презентацию более динамичной и удерживать внимание аудитории. Для применения перехода:
                          1. в списке слайдов слева выделите слайды, к которым требуется применить переход,
                          2. -
                          3. на вкладке Параметры слайда выберите переход из выпадающего списка Эффект,
                          4. +
                          5. на вкладке Параметры слайда выберите переход из выпадающего списка Эффект, +

                            Примечание: чтобы открыть вкладку Параметры слайда, можно щелкнуть по значку Параметры слайда Значок Параметры слайда справа или щелкнуть правой кнопкой мыши по слайду в области редактирования слайда и выбрать в контекстном меню пункт Параметры слайда.

                            +
                          6. настройте свойства перехода: выберите вариант перехода, его длительность и то, каким образом должны сменяться слайды,
                          7. если требуется применить один и тот же переход ко всем слайдам в презентации, нажмите кнопку Применить ко всем слайдам.

                            Чтобы получить более подробную информацию об этих опциях, обратитесь к разделу Применение переходов.

                            @@ -57,13 +61,25 @@
                          8. Для изменения макета слайда:
                            1. в списке слайдов слева выделите слайды, для которых требуется применить новый макет,
                            2. -
                            3. на верхней панели инструментов щелкните по значку Изменить макет слайда Значок Изменить макет слайда,
                            4. +
                            5. щелкните по значку Изменить макет слайда Значок Изменить макет слайда на вкладке Главная верхней панели инструментов,
                            6. выберите в меню нужный макет.

                              Вы можете также щелкнуть правой кнопкой мыши по нужному слайду в списке слева, выбрать в контекстном меню пункт Изменить макет и выбрать нужный макет.

                              Примечание: в настоящий момент доступны следующие макеты: Титульный слайд, Заголовок и объект, Заголовок раздела, Два объекта, Два текста и два объекта, Только заголовок, Пустой слайд, Заголовок, объект и подпись, Рисунок с подписью, Вертикальный текст, Вертикальный заголовок и текст.

                          9. +
                          10. + Для добавления заметок к слайду: +
                              +
                            1. в списке слайдов слева выберите слайд, к которому требуется добавить заметку,
                            2. +
                            3. щелкните по надписи Click to add notes под областью редактирования слайда,
                            4. +
                            5. + введите текст заметки. +

                              Примечание: текст можно отформатировать с помощью значков на вкладке Главная верхней панели инструментов.

                              +
                            6. +
                            +

                            При показе слайдов в режиме докладчика заметки к слайду будут отображаться под областью просмотра слайда.

                            +
                        diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ViewPresentationInfo.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ViewPresentationInfo.htm index 341c4d3f7..7e6f0904c 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ViewPresentationInfo.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/ViewPresentationInfo.htm @@ -9,10 +9,10 @@

                        Просмотр сведений о презентации

                        -

                        Чтобы получить доступ к подробным сведениям о редактируемой презентации, щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Сведения о презентации.

                        +

                        Чтобы получить доступ к подробным сведениям о редактируемой презентации, нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Сведения о презентации.

                        Общие сведения

                        Сведения о презентации включают название презентации, автора, размещение и дату создания.

                        -

                        Примечание: используя онлайн-редакторы, вы можете изменить название презентации непосредственно из интерфейса редактора. Для этого выберите опцию Переименовать... в меню Файл Значок Файл или щелкните по имени файла, отображенному в шапке редактора рядом с логотипом (в левом верхнем углу), затем введите нужное Имя файла в новом открывшемся окне и нажмите кнопку OK.

                        +

                        Примечание: используя онлайн-редакторы, вы можете изменить название презентации непосредственно из интерфейса редактора. Для этого нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Переименовать..., затем введите нужное Имя файла в новом открывшемся окне и нажмите кнопку OK.

                        Сведения о правах доступа

                        Примечание: эта опция недоступна для пользователей с правами доступа Только чтение.

                        diff --git a/apps/presentationeditor/main/resources/help/ru/images/access_rights.png b/apps/presentationeditor/main/resources/help/ru/images/access_rights.png index 6d3cb0bf8..a8330a8d1 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/access_rights.png and b/apps/presentationeditor/main/resources/help/ru/images/access_rights.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/addhyperlink.png b/apps/presentationeditor/main/resources/help/ru/images/addhyperlink.png index 5627099c9..47b4c40df 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/addhyperlink.png and b/apps/presentationeditor/main/resources/help/ru/images/addhyperlink.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/addslide.png b/apps/presentationeditor/main/resources/help/ru/images/addslide.png index 0ac0ed119..a55e3d1a7 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/addslide.png and b/apps/presentationeditor/main/resources/help/ru/images/addslide.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/alignobjectbottom.png b/apps/presentationeditor/main/resources/help/ru/images/alignobjectbottom.png index 7cedb3992..11bf4ab9c 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/alignobjectbottom.png and b/apps/presentationeditor/main/resources/help/ru/images/alignobjectbottom.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/alignobjectcenter.png b/apps/presentationeditor/main/resources/help/ru/images/alignobjectcenter.png index b5e28f2f5..c606bf885 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/alignobjectcenter.png and b/apps/presentationeditor/main/resources/help/ru/images/alignobjectcenter.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/alignobjectleft.png b/apps/presentationeditor/main/resources/help/ru/images/alignobjectleft.png index b25727389..a18fa0fdf 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/alignobjectleft.png and b/apps/presentationeditor/main/resources/help/ru/images/alignobjectleft.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/alignobjectmiddle.png b/apps/presentationeditor/main/resources/help/ru/images/alignobjectmiddle.png index 43b436bcc..a22936bac 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/alignobjectmiddle.png and b/apps/presentationeditor/main/resources/help/ru/images/alignobjectmiddle.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/alignobjectright.png b/apps/presentationeditor/main/resources/help/ru/images/alignobjectright.png index 013a93ff0..125207da0 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/alignobjectright.png and b/apps/presentationeditor/main/resources/help/ru/images/alignobjectright.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/alignobjecttop.png b/apps/presentationeditor/main/resources/help/ru/images/alignobjecttop.png index 02f4c02d1..f9699e8e2 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/alignobjecttop.png and b/apps/presentationeditor/main/resources/help/ru/images/alignobjecttop.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/bringforward.png b/apps/presentationeditor/main/resources/help/ru/images/bringforward.png index 43a5f466c..91ff2770f 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/bringforward.png and b/apps/presentationeditor/main/resources/help/ru/images/bringforward.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/bringtofront.png b/apps/presentationeditor/main/resources/help/ru/images/bringtofront.png index 29f2fc9f3..bdd785688 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/bringtofront.png and b/apps/presentationeditor/main/resources/help/ru/images/bringtofront.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/comment_toptoolbar.png b/apps/presentationeditor/main/resources/help/ru/images/comment_toptoolbar.png new file mode 100644 index 000000000..a33649d46 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/comment_toptoolbar.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/distributehorizontally.png b/apps/presentationeditor/main/resources/help/ru/images/distributehorizontally.png index 2c9532e75..815ab254a 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/distributehorizontally.png and b/apps/presentationeditor/main/resources/help/ru/images/distributehorizontally.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/distributevertically.png b/apps/presentationeditor/main/resources/help/ru/images/distributevertically.png index 2056db343..124e9acac 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/distributevertically.png and b/apps/presentationeditor/main/resources/help/ru/images/distributevertically.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/gotodocuments.png b/apps/presentationeditor/main/resources/help/ru/images/gotodocuments.png new file mode 100644 index 000000000..0ad9d357d Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/gotodocuments.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/group.png b/apps/presentationeditor/main/resources/help/ru/images/group.png index 7b3faad26..b277d90b8 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/group.png and b/apps/presentationeditor/main/resources/help/ru/images/group.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/hidden_slide.png b/apps/presentationeditor/main/resources/help/ru/images/hidden_slide.png new file mode 100644 index 000000000..9599cd32e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/hidden_slide.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/image.png b/apps/presentationeditor/main/resources/help/ru/images/image.png index 90eab5b06..58ca36dde 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/image.png and b/apps/presentationeditor/main/resources/help/ru/images/image.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/insertautoshape.png b/apps/presentationeditor/main/resources/help/ru/images/insertautoshape.png index 5e49eab70..315c8474c 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/insertautoshape.png and b/apps/presentationeditor/main/resources/help/ru/images/insertautoshape.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/insertchart.png b/apps/presentationeditor/main/resources/help/ru/images/insertchart.png index 0d312f97c..c439ab44f 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/insertchart.png and b/apps/presentationeditor/main/resources/help/ru/images/insertchart.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/insertequationicon.png b/apps/presentationeditor/main/resources/help/ru/images/insertequationicon.png index 666dd6a53..7dcd29b1c 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/insertequationicon.png and b/apps/presentationeditor/main/resources/help/ru/images/insertequationicon.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/inserttextarticon.png b/apps/presentationeditor/main/resources/help/ru/images/inserttextarticon.png new file mode 100644 index 000000000..7b40e327f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/inserttextarticon.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/inserttexticon.png b/apps/presentationeditor/main/resources/help/ru/images/inserttexticon.png index db7a834ba..26fbaac13 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/inserttexticon.png and b/apps/presentationeditor/main/resources/help/ru/images/inserttexticon.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/pointer.png b/apps/presentationeditor/main/resources/help/ru/images/pointer.png new file mode 100644 index 000000000..32306dd3e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/pointer.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/pointer_enabled.png b/apps/presentationeditor/main/resources/help/ru/images/pointer_enabled.png new file mode 100644 index 000000000..bfa4789ab Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/pointer_enabled.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/pointer_screen.png b/apps/presentationeditor/main/resources/help/ru/images/pointer_screen.png new file mode 100644 index 000000000..e2665204c Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/pointer_screen.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/presenter_mode.png b/apps/presentationeditor/main/resources/help/ru/images/presenter_mode.png new file mode 100644 index 000000000..d3433d27f Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/presenter_mode.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/preview_mode.png b/apps/presentationeditor/main/resources/help/ru/images/preview_mode.png new file mode 100644 index 000000000..8818e8d33 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/preview_mode.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/sendbackward.png b/apps/presentationeditor/main/resources/help/ru/images/sendbackward.png index f6863cb75..646d2b181 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/sendbackward.png and b/apps/presentationeditor/main/resources/help/ru/images/sendbackward.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/sendtoback.png b/apps/presentationeditor/main/resources/help/ru/images/sendtoback.png index 6f530e6dc..1f7d60ff0 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/sendtoback.png and b/apps/presentationeditor/main/resources/help/ru/images/sendtoback.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/showsettings.png b/apps/presentationeditor/main/resources/help/ru/images/showsettings.png new file mode 100644 index 000000000..7ab85a214 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/showsettings.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/slidesizesettingswindow.png b/apps/presentationeditor/main/resources/help/ru/images/slidesizesettingswindow.png index b6832a7a3..aa6722e77 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/slidesizesettingswindow.png and b/apps/presentationeditor/main/resources/help/ru/images/slidesizesettingswindow.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/split_cells.png b/apps/presentationeditor/main/resources/help/ru/images/split_cells.png index 32abcc974..55b1f6cc0 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/split_cells.png and b/apps/presentationeditor/main/resources/help/ru/images/split_cells.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/table.png b/apps/presentationeditor/main/resources/help/ru/images/table.png index c65d9d32b..0e8b33b19 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/table.png and b/apps/presentationeditor/main/resources/help/ru/images/table.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/ungroup.png b/apps/presentationeditor/main/resources/help/ru/images/ungroup.png index 80045757e..fba764eb1 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/ungroup.png and b/apps/presentationeditor/main/resources/help/ru/images/ungroup.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/images/usersnumber.png b/apps/presentationeditor/main/resources/help/ru/images/usersnumber.png index 1d378846f..becee0dc3 100644 Binary files a/apps/presentationeditor/main/resources/help/ru/images/usersnumber.png and b/apps/presentationeditor/main/resources/help/ru/images/usersnumber.png differ diff --git a/apps/presentationeditor/mobile/app/controller/Main.js b/apps/presentationeditor/mobile/app/controller/Main.js index 6d4e4ab23..75d5103d1 100644 --- a/apps/presentationeditor/mobile/app/controller/Main.js +++ b/apps/presentationeditor/mobile/app/controller/Main.js @@ -168,7 +168,7 @@ define([ Common.Gateway.on('init', _.bind(me.loadConfig, me)); Common.Gateway.on('showmessage', _.bind(me.onExternalMessage, me)); Common.Gateway.on('opendocument', _.bind(me.loadDocument, me)); - Common.Gateway.ready(); + Common.Gateway.appReady(); } me.initNames(); @@ -443,6 +443,8 @@ define([ if (this._isDocReady) return; + Common.Gateway.documentReady(); + if (this._state.openDlg) uiApp.closeModal(this._state.openDlg); 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/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index 3690aa5ed..8fcead9b4 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -166,6 +166,8 @@ var ApplicationController = new(function(){ } function onDocumentContentReady() { + Common.Gateway.documentReady(); + hidePreloader(); if ( !embedConfig.shareUrl ) @@ -520,7 +522,7 @@ var ApplicationController = new(function(){ Common.Gateway.on('init', loadConfig); Common.Gateway.on('opendocument', loadDocument); Common.Gateway.on('showmessage', onExternalMessage); - Common.Gateway.ready(); + Common.Gateway.appReady(); } return me; diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 6026afb7b..1ca136c2b 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}); }, @@ -1175,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; @@ -1187,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; @@ -1228,7 +1229,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); } }, @@ -1416,7 +1417,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 +1447,8 @@ define([ var inPivot = !!cellinfo.asc_getPivotTableInfo(); + documentHolder.pmiEntriesList.setVisible(!iscelledit && !inPivot); + _.each(documentHolder.ssMenu.items, function(item) { item.setDisabled(isCellLocked); }); @@ -1503,7 +1505,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, diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 405ed3123..3a3f563a3 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -180,7 +180,7 @@ define([ Common.Gateway.on('showmessage', _.bind(this.onExternalMessage, this)); Common.Gateway.on('opendocument', _.bind(this.loadDocument, this)); Common.Gateway.on('internalcommand', _.bind(this.onInternalCommand, this)); - Common.Gateway.ready(); + Common.Gateway.appReady(); this.getApplication().getController('Viewport').setApi(this.api); @@ -201,7 +201,7 @@ define([ if (!me.isModalShowed && !(me.loadMask && me.loadMask.isVisible())) { if (!e.relatedTarget || - !/area_id/.test(e.target.id) && $(e.target).parent().find(e.relatedTarget).length<1 /* Check if focus in combobox goes from input to it's menu button or menu items */ + !/area_id/.test(e.target.id) && ($(e.target).parent().find(e.relatedTarget).length<1 || e.target.localName == 'textarea') /* Check if focus in combobox goes from input to it's menu button or menu items, or from comment editing area to Ok/Cancel button */ && (e.relatedTarget.localName != 'input' || !/form-control/.test(e.relatedTarget.className)) /* Check if focus goes to text input with class "form-control" */ && (e.relatedTarget.localName != 'textarea' || /area_id/.test(e.relatedTarget.id))) /* Check if focus goes to textarea, but not to "area_id" */ { me.api.asc_enableKeyEvents(true); @@ -555,6 +555,8 @@ define([ if (this._isDocReady) return; + Common.Gateway.documentReady(); + if (this._state.openDlg) this._state.openDlg.close(); 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'); 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/main/resources/help/en/Functions/abs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/abs.htm index 7a3c1d690..86fc330be 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/abs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/abs.htm @@ -16,7 +16,7 @@

                        To apply the ABS function,

                        1. select the cell where you wish to display the result,
                        2. -
                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                          or right-click within a selected cell and select the Insert Function option from the menu,
                          or click the Function icon icon situated at the formula bar,
                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/accrint.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/accrint.htm index bc04a0233..d38fb05de 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/accrint.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/accrint.htm @@ -51,7 +51,7 @@

                          To apply the ACCRINT function,

                          1. select the cell where you wish to display the result,
                          2. -
                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                            or right-click within a selected cell and select the Insert Function option from the menu,
                            or click the Function icon icon situated at the formula bar,
                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/accrintm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/accrintm.htm index acb1b90a3..e2aa6b687 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/accrintm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/accrintm.htm @@ -49,7 +49,7 @@

                            To apply the ACCRINTM function,

                            1. select the cell where you wish to display the result,
                            2. -
                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                              or right-click within a selected cell and select the Insert Function option from the menu,
                              or click the Function icon icon situated at the formula bar,
                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/acos.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/acos.htm index df067c1a4..33c4af3fa 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/acos.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/acos.htm @@ -16,7 +16,7 @@

                              To apply the ACOS function,

                              1. select the cell where you wish to display the result,
                              2. -
                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                or right-click within a selected cell and select the Insert Function option from the menu,
                                or click the Function icon icon situated at the formula bar,
                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/acosh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/acosh.htm index e593ed695..249566926 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/acosh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/acosh.htm @@ -16,7 +16,7 @@

                                To apply the ACOSH function,

                                1. select the cell where you wish to display the result,
                                2. -
                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                  or click the Function icon icon situated at the formula bar,
                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/acot.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/acot.htm index b9384f234..90c1006aa 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/acot.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/acot.htm @@ -16,7 +16,7 @@

                                  To apply the ACOT function,

                                  1. select the cell where you wish to display the result,
                                  2. -
                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                    or click the Function icon icon situated at the formula bar,
                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/acoth.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/acoth.htm index f8fc0b593..7b86f5cdc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/acoth.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/acoth.htm @@ -16,7 +16,7 @@

                                    To apply the ACOTH function,

                                    1. select the cell where you wish to display the result,
                                    2. -
                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                      or click the Function icon icon situated at the formula bar,
                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/address.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/address.htm index 9044b42c4..a205770ae 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/address.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/address.htm @@ -44,7 +44,7 @@

                                      To apply the ADDRESS function,

                                      1. select the cell where you wish to display the result,
                                      2. -
                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                        or click the Function icon icon situated at the formula bar,
                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/aggregate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/aggregate.htm new file mode 100644 index 000000000..093d5e460 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/aggregate.htm @@ -0,0 +1,189 @@ + + + + AGGREGATE Function + + + + + +
                                        +

                                        AGGREGATE Function

                                        +

                                        The AGGREGATE function is one of the math and trigonometry functions. The function is used to return an aggregate in a list or database. The AGGREGATE function can apply different aggregate functions to a list or database with the option to ignore hidden rows and error values.

                                        +

                                        The AGGREGATE function syntax is:

                                        +

                                        AGGREGATE(function_num, options, ref1 [, ref2], ...)

                                        +

                                        where

                                        +

                                        function_num is a numeric value that specifies which function to use. The possible values are listed in the table below.

                                        +
                      Название шрифтаНазвание шрифтаШрифтШрифт Используется для выбора шрифта из списка доступных.
                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      function_num
                      Function
                      1AVERAGE
                      2COUNT
                      3COUNTA
                      4MAX
                      5MIN
                      6PRODUCT
                      7STDEV.S
                      8STDEV.P
                      9SUM
                      10VAR.S
                      11VAR.P
                      12MEDIAN
                      13MODE.SNGL
                      14LARGE
                      15SMALL
                      16PERCENTILE.INC
                      17QUARTILE.INC
                      18PERCENTILE.EXC
                      19QUARTILE.EXC
                      +

                      options is a numeric value that specifies which values should be ignored. The possible values are listed in the table below.

                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      Numeric value
                      Behavior
                      0 or omittedIgnore nested SUBTOTAL and AGGREGATE functions
                      1Ignore hidden rows, nested SUBTOTAL and AGGREGATE functions
                      2Ignore error values, nested SUBTOTAL and AGGREGATE functions
                      3Ignore hidden rows, error values, nested SUBTOTAL and AGGREGATE functions
                      4Ignore nothing
                      5Ignore hidden rows
                      6Ignore error values
                      7Ignore hidden rows and error values
                      +

                      ref1(2) is up to 253 numeric values or a reference to the cell range containing the values for which you want the aggregate value.

                      +

                      Note: if you want to use one of the following functions: LARGE, SMALL, PERCENTILE.INC, QUARTILE.INC, PERCENTILE.EXC, or QUARTILE.EXC, ref1 must be a reference to the cell range and ref2 must be the second argument that is required for these functions (k or quart).

                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      Function
                      Syntax
                      LARGELARGE(array, k)
                      SMALLSMALL(array, k)
                      PERCENTILE.INCPERCENTILE.INC(array, k)
                      QUARTILE.INCQUARTILE.INC(array, quart)
                      PERCENTILE.EXCPERCENTILE.EXC(array, k)
                      QUARTILE.EXCQUARTILE.EXC(array, quart)
                      +

                      To apply the AGGREGATE function,

                      +
                        +
                      1. select the cell where you wish to display the result,
                      2. +
                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                        or right-click within a selected cell and select the Insert Function option from the menu, +
                        or click the Function icon icon situated at the formula bar, +
                      4. +
                      5. select the Math and trigonometry function group from the list,
                      6. +
                      7. click the AGGREGATE function,
                      8. +
                      9. enter the required arguments separating them by comma,
                      10. +
                      11. press the Enter button.
                      12. +
                      +

                      The result will be displayed in the selected cell.

                      +

                      The figure below displays the result returned by the AGGREGATE function when the SUM function is applied.

                      +

                      AGGREGATE Function

                      +

                      The figure below displays the result returned by the AGGREGATE function when the LARGE function is applied, ref1 is a reference to the cell range, and k is equal to 2. The function returns the second largest value in cells A1-A4.

                      +

                      AGGREGATE Function

                      +
                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/amordegrc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/amordegrc.htm index 0ff9a89e6..fb1ef5dad 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/amordegrc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/amordegrc.htm @@ -51,7 +51,7 @@

                      To apply the AMORDEGRC function,

                      1. select the cell where you wish to display the result,
                      2. -
                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                        or right-click within a selected cell and select the Insert Function option from the menu,
                        or click the Function icon icon situated at the formula bar,
                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/amorintm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/amorintm.htm index 59f90f04d..c6fffc2b5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/amorintm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/amorintm.htm @@ -23,7 +23,7 @@

                        To apply the FV function,

                        1. select the cell where you wish to display the result,
                        2. -
                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                          or right-click within a selected cell and select the Insert Function option from the menu,
                          or click the Function icon icon situated at the formula bar,
                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/amorlinc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/amorlinc.htm index 33fc49bc6..03bd3b012 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/amorlinc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/amorlinc.htm @@ -51,7 +51,7 @@

                          To apply the AMORLINC function,

                          1. select the cell where you wish to display the result,
                          2. -
                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                            or right-click within a selected cell and select the Insert Function option from the menu,
                            or click the Function icon icon situated at the formula bar,
                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/and.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/and.htm index fd56d233c..834229473 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/and.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/and.htm @@ -16,7 +16,7 @@

                            To apply the AND function,

                            1. select the cell where you wish to display the result,
                            2. -
                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                              or right-click within a selected cell and select the Insert Function option from the menu,
                              or click the Function icon icon situated at the formula bar,
                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/arabic.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/arabic.htm index 0d3ceb55e..85a19513c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/arabic.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/arabic.htm @@ -18,7 +18,7 @@

                              To apply the ARABIC function,

                              1. select the cell where you wish to display the result,
                              2. -
                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                or right-click within a selected cell and select the Insert Function option from the menu,
                                or click the Function icon icon situated at the formula bar,
                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/asin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/asin.htm index 10bdff8a8..81497f20c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/asin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/asin.htm @@ -16,7 +16,7 @@

                                To apply the ASIN function,

                                1. select the cell where you wish to display the result,
                                2. -
                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                  or click the Function icon icon situated at the formula bar,
                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/asinh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/asinh.htm index d467815e8..5eb15a3f9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/asinh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/asinh.htm @@ -16,7 +16,7 @@

                                  To apply the ASINH function,

                                  1. select the cell where you wish to display the result,
                                  2. -
                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                    or click the Function icon icon situated at the formula bar,
                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/atan.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/atan.htm index 6d4cf166a..6fe301424 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/atan.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/atan.htm @@ -16,7 +16,7 @@

                                    To apply the ATAN function,

                                    1. select the cell where you wish to display the result,
                                    2. -
                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                      or click the Function icon icon situated at the formula bar,
                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/atan2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/atan2.htm index 946ac6a78..4a4691a10 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/atan2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/atan2.htm @@ -16,7 +16,7 @@

                                      To apply the ATAN2 function,

                                      1. select the cell where you wish to display the result,
                                      2. -
                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                        or click the Function icon icon situated at the formula bar,
                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/atanh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/atanh.htm index 96a32d6c3..5e009e87c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/atanh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/atanh.htm @@ -16,7 +16,7 @@

                                        To apply the ATANH function,

                                        1. select the cell where you wish to display the result,
                                        2. -
                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                          or click the Function icon icon situated at the formula bar,
                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/avedev.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/avedev.htm index d70afaf45..3212985c2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/avedev.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/avedev.htm @@ -16,7 +16,7 @@

                                          To apply the AVEDEV function,

                                          1. select the cell where you wish to display the result,
                                          2. -
                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                            or click the Function icon icon situated at the formula bar,
                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/average.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/average.htm index 534813aa0..9cbc726d8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/average.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/average.htm @@ -16,7 +16,7 @@

                                            To apply the AVERAGE function,

                                            1. select the cell where you wish to display the result,
                                            2. -
                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                              or click the Function icon icon situated at the formula bar,
                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/averagea.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/averagea.htm index 938fca4f1..8951d333e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/averagea.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/averagea.htm @@ -16,7 +16,7 @@

                                              To apply the AVERAGEA function,

                                              1. select the cell where you wish to display the result,
                                              2. -
                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                or click the Function icon icon situated at the formula bar,
                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm index fb38deabb..e935d2aaf 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageif.htm @@ -20,7 +20,7 @@

                                                To apply the AVERAGEIF function,

                                                1. select the cell where you wish to display the result,
                                                2. -
                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                  or click the Function icon icon situated at the formula bar,
                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageifs.htm index 5402e9f45..caa854bfc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/averageifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/averageifs.htm @@ -21,7 +21,7 @@

                                                  To apply the AVERAGEIFS function,

                                                  1. select the cell where you wish to display the result,
                                                  2. -
                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                    or click the Function icon icon situated at the formula bar,
                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/base.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/base.htm index 7306b1273..be0a37391 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/base.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/base.htm @@ -20,7 +20,7 @@

                                                    To apply the BASE function,

                                                    1. select the cell where you wish to display the result,
                                                    2. -
                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                      or click the Function icon icon situated at the formula bar,
                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/besseli.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/besseli.htm new file mode 100644 index 000000000..4d0da461d --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/besseli.htm @@ -0,0 +1,35 @@ + + + + BESSELI Function + + + + + +
                                                      +

                                                      BESSELI Function

                                                      +

                                                      The BESSELI function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments.

                                                      +

                                                      The BESSELI function syntax is:

                                                      +

                                                      BESSELI(X, N)

                                                      +

                                                      where

                                                      +

                                                      X is the value at which to evaluate the function,

                                                      +

                                                      N is the order of the Bessel function, a numeric value greater than or equal to 0.

                                                      +

                                                      The numeric values can be entered manually or included into the cell you make reference to.

                                                      +

                                                      To apply the BESSELI function,

                                                      +
                                                        +
                                                      1. select the cell where you wish to display the result,
                                                      2. +
                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                        or click the Function icon icon situated at the formula bar, +
                                                      4. +
                                                      5. select the Engineering function group from the list,
                                                      6. +
                                                      7. click the BESSELI function,
                                                      8. +
                                                      9. enter the required arguments separating them by comma,
                                                      10. +
                                                      11. press the Enter button.
                                                      12. +
                                                      +

                                                      The result will be displayed in the selected cell.

                                                      +

                                                      BESSELI Function

                                                      +
                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/besselj.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/besselj.htm new file mode 100644 index 000000000..267fd8623 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/besselj.htm @@ -0,0 +1,35 @@ + + + + BESSELJ Function + + + + + +
                                                      +

                                                      BESSELJ Function

                                                      +

                                                      The BESSELJ function is one of the engineering functions. It is used to return the Bessel function.

                                                      +

                                                      The BESSELJ function syntax is:

                                                      +

                                                      BESSELJ(X, N)

                                                      +

                                                      where

                                                      +

                                                      X is the value at which to evaluate the function,

                                                      +

                                                      N is the order of the Bessel function, a numeric value greater than or equal to 0.

                                                      +

                                                      The numeric values can be entered manually or included into the cell you make reference to.

                                                      +

                                                      To apply the BESSELJ function,

                                                      +
                                                        +
                                                      1. select the cell where you wish to display the result,
                                                      2. +
                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                        or click the Function icon icon situated at the formula bar, +
                                                      4. +
                                                      5. select the Engineering function group from the list,
                                                      6. +
                                                      7. click the BESSELJ function,
                                                      8. +
                                                      9. enter the required arguments separating them by comma,
                                                      10. +
                                                      11. press the Enter button.
                                                      12. +
                                                      +

                                                      The result will be displayed in the selected cell.

                                                      +

                                                      BESSELJ Function

                                                      +
                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/besselk.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/besselk.htm new file mode 100644 index 000000000..85d9926bd --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/besselk.htm @@ -0,0 +1,35 @@ + + + + BESSELK Function + + + + + +
                                                      +

                                                      BESSELK Function

                                                      +

                                                      The BESSELK function is one of the engineering functions. It is used to return the modified Bessel function, which is equivalent to the Bessel functions evaluated for purely imaginary arguments.

                                                      +

                                                      The BESSELK function syntax is:

                                                      +

                                                      BESSELK(X, N)

                                                      +

                                                      where

                                                      +

                                                      X is the value at which to evaluate the function, a numeric value greater than 0,

                                                      +

                                                      N is the order of the Bessel function, a numeric value greater than or equal to 0.

                                                      +

                                                      The numeric values can be entered manually or included into the cell you make reference to.

                                                      +

                                                      To apply the BESSELK function,

                                                      +
                                                        +
                                                      1. select the cell where you wish to display the result,
                                                      2. +
                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                        or click the Function icon icon situated at the formula bar, +
                                                      4. +
                                                      5. select the Engineering function group from the list,
                                                      6. +
                                                      7. click the BESSELK function,
                                                      8. +
                                                      9. enter the required arguments separating them by comma,
                                                      10. +
                                                      11. press the Enter button.
                                                      12. +
                                                      +

                                                      The result will be displayed in the selected cell.

                                                      +

                                                      BESSELK Function

                                                      +
                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bessely.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bessely.htm new file mode 100644 index 000000000..22480b9d1 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bessely.htm @@ -0,0 +1,35 @@ + + + + BESSELY Function + + + + + +
                                                      +

                                                      BESSELY Function

                                                      +

                                                      The BESSELY function is one of the engineering functions. It is used to return the Bessel function, which is also called the Weber function or the Neumann function.

                                                      +

                                                      The BESSELY function syntax is:

                                                      +

                                                      BESSELY(X, N)

                                                      +

                                                      where

                                                      +

                                                      X is the value at which to evaluate the function, a numeric value greater than 0,

                                                      +

                                                      N is the order of the Bessel function, a numeric value greater than or equal to 0.

                                                      +

                                                      The numeric values can be entered manually or included into the cell you make reference to.

                                                      +

                                                      To apply the BESSELY function,

                                                      +
                                                        +
                                                      1. select the cell where you wish to display the result,
                                                      2. +
                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                        or click the Function icon icon situated at the formula bar, +
                                                      4. +
                                                      5. select the Engineering function group from the list,
                                                      6. +
                                                      7. click the BESSELY function,
                                                      8. +
                                                      9. enter the required arguments separating them by comma,
                                                      10. +
                                                      11. press the Enter button.
                                                      12. +
                                                      +

                                                      The result will be displayed in the selected cell.

                                                      +

                                                      BESSELY Function

                                                      +
                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-dist.htm index ea09d9244..671b3191e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-dist.htm @@ -23,7 +23,7 @@

                                                      To apply the BETA.DIST function,

                                                      1. select the cell where you wish to display the result,
                                                      2. -
                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                        or click the Function icon icon situated at the formula bar,
                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-inv.htm index a20fb500b..585ac06b5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/beta-inv.htm @@ -22,7 +22,7 @@

                                                        To apply the BETA.INV function,

                                                        1. select the cell where you wish to display the result,
                                                        2. -
                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                          or click the Function icon icon situated at the formula bar,
                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/betadist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/betadist.htm index 96634c203..679df79a9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/betadist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/betadist.htm @@ -22,7 +22,7 @@

                                                          To apply the BETADIST function,

                                                          1. select the cell where you wish to display the result,
                                                          2. -
                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                            or click the Function icon icon situated at the formula bar,
                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2dec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2dec.htm index a3a42d02a..342b46e3b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2dec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2dec.htm @@ -17,7 +17,7 @@

                                                            To apply the BIN2DEC function,

                                                            1. select the cell where you wish to display the result,
                                                            2. -
                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                              or click the Function icon icon situated at the formula bar,
                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2hex.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2hex.htm index 1dcd54dfe..7ab6b9fec 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2hex.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2hex.htm @@ -19,7 +19,7 @@

                                                              To apply the BIN2HEX function,

                                                              1. select the cell where you wish to display the result,
                                                              2. -
                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                or click the Function icon icon situated at the formula bar,
                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2oct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2oct.htm index 9bce2d0d2..383fac370 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2oct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bin2oct.htm @@ -19,7 +19,7 @@

                                                                To apply the BIN2OCT function,

                                                                1. select the cell where you wish to display the result,
                                                                2. -
                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                  or click the Function icon icon situated at the formula bar,
                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist-range.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist-range.htm new file mode 100644 index 000000000..e76b7535e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist-range.htm @@ -0,0 +1,37 @@ + + + + BINOM.DIST.RANGE Function + + + + + +
                                                                  +

                                                                  BINOM.DIST.RANGE Function

                                                                  +

                                                                  The BINOM.DIST.RANGE function is one of the statistical functions. It is used to return the probability of a trial result using a binomial distribution.

                                                                  +

                                                                  The BINOM.DIST.RANGE function syntax is:

                                                                  +

                                                                  BINOM.DIST.RANGE(trials, probability-s, number-s [, number-s2])

                                                                  +

                                                                  where

                                                                  +

                                                                  trials is the number of trials, a numeric value greater than or equal to number-s.

                                                                  +

                                                                  probability-s is the success probability of each trial, a numeric value greater than or equal to 0 but less than or equal to 1.

                                                                  +

                                                                  number-s is the minimum number of successes in the trials you want to calculate probability for, a numeric value greater than or equal to 0.

                                                                  +

                                                                  number-s2 is an optional argument. The maximum number of successes in the trials you want to calculate probability for, a numeric value greater than number-s and less than or equal to trials.

                                                                  +

                                                                  The values can be entered manually or included into the cells you make reference to.

                                                                  +

                                                                  To apply the BINOM.DIST.RANGE function,

                                                                  +
                                                                    +
                                                                  1. select the cell where you wish to display the result,
                                                                  2. +
                                                                  3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                    or click the Function icon icon situated at the formula bar, +
                                                                  4. +
                                                                  5. select the Statistical function group from the list,
                                                                  6. +
                                                                  7. click the BINOM.DIST.RANGE function,
                                                                  8. +
                                                                  9. enter the required arguments separating them by commas,
                                                                  10. +
                                                                  11. press the Enter button.
                                                                  12. +
                                                                  +

                                                                  The result will be displayed in the selected cell.

                                                                  +

                                                                  BINOM.DIST.RANGE Function

                                                                  +
                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist.htm index 99bbc96b9..6c032f338 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist.htm @@ -21,7 +21,7 @@

                                                                  To apply the BINOM.DIST function,

                                                                  1. select the cell where you wish to display the result,
                                                                  2. -
                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                    or click the Function icon icon situated at the formula bar,
                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-inv.htm index 6f68fce12..7349155a1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/binom-inv.htm @@ -20,7 +20,7 @@

                                                                    To apply the BINOM.INV function,

                                                                    1. select the cell where you wish to display the result,
                                                                    2. -
                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                      or click the Function icon icon situated at the formula bar,
                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/binomdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/binomdist.htm index d58f5ceda..665b79245 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/binomdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/binomdist.htm @@ -21,7 +21,7 @@

                                                                      To apply the BINOMDIST function,

                                                                      1. select the cell where you wish to display the result,
                                                                      2. -
                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                        or click the Function icon icon situated at the formula bar,
                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitand.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitand.htm new file mode 100644 index 000000000..0319661f0 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitand.htm @@ -0,0 +1,36 @@ + + + + BITAND Function + + + + + +
                                                                        +

                                                                        BITAND Function

                                                                        +

                                                                        The BITAND function is one of the engineering functions. It is used to return a bitwise 'AND' of two numbers.

                                                                        +

                                                                        The BITAND function syntax is:

                                                                        +

                                                                        BITAND(number1, number2)

                                                                        +

                                                                        where

                                                                        +

                                                                        number1 is a numeric value in decimal form greater than or equal to 0,

                                                                        +

                                                                        number2 is a numeric value in decimal form greater than or equal to 0.

                                                                        +

                                                                        The numeric values can be entered manually or included into the cell you make reference to.

                                                                        +

                                                                        The value of each bit position is counted only if both parameter's bits at that position are 1.

                                                                        +

                                                                        To apply the BITAND function,

                                                                        +
                                                                          +
                                                                        1. select the cell where you wish to display the result,
                                                                        2. +
                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                          or click the Function icon icon situated at the formula bar, +
                                                                        4. +
                                                                        5. select the Engineering function group from the list,
                                                                        6. +
                                                                        7. click the BITAND function,
                                                                        8. +
                                                                        9. enter the required arguments separating them by comma,
                                                                        10. +
                                                                        11. press the Enter button.
                                                                        12. +
                                                                        +

                                                                        The result will be displayed in the selected cell.

                                                                        +

                                                                        BITAND Function

                                                                        +
                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitlshift.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitlshift.htm new file mode 100644 index 000000000..3ff06d93b --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitlshift.htm @@ -0,0 +1,36 @@ + + + + BITLSHIFT Function + + + + + +
                                                                        +

                                                                        BITLSHIFT Function

                                                                        +

                                                                        The BITLSHIFT function is one of the engineering functions. It is used to return a number shifted left by the specified number of bits.

                                                                        +

                                                                        The BITLSHIFT function syntax is:

                                                                        +

                                                                        BITLSHIFT(number, shift_amount)

                                                                        +

                                                                        where

                                                                        +

                                                                        number is an integer greater than or equal to 0,

                                                                        +

                                                                        shift_amount is a number of bits by which you want to shift number, an integer.

                                                                        +

                                                                        The numeric values can be entered manually or included into the cell you make reference to.

                                                                        +

                                                                        Shifting a number left is equivalent to adding zeros (0) to the right of the binary representation of the number.

                                                                        +

                                                                        To apply the BITLSHIFT function,

                                                                        +
                                                                          +
                                                                        1. select the cell where you wish to display the result,
                                                                        2. +
                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                          or click the Function icon icon situated at the formula bar, +
                                                                        4. +
                                                                        5. select the Engineering function group from the list,
                                                                        6. +
                                                                        7. click the BITLSHIFT function,
                                                                        8. +
                                                                        9. enter the required arguments separating them by comma,
                                                                        10. +
                                                                        11. press the Enter button.
                                                                        12. +
                                                                        +

                                                                        The result will be displayed in the selected cell.

                                                                        +

                                                                        BITLSHIFT Function

                                                                        +
                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitor.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitor.htm new file mode 100644 index 000000000..739ee1067 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitor.htm @@ -0,0 +1,36 @@ + + + + BITOR Function + + + + + +
                                                                        +

                                                                        BITOR Function

                                                                        +

                                                                        The BITOR function is one of the engineering functions. It is used to return a bitwise 'OR' of two numbers.

                                                                        +

                                                                        The BITOR function syntax is:

                                                                        +

                                                                        BITOR(number1, number2)

                                                                        +

                                                                        where

                                                                        +

                                                                        number1 is a numeric value in decimal form greater than or equal to 0,

                                                                        +

                                                                        number2 is a numeric value in decimal form greater than or equal to 0.

                                                                        +

                                                                        The numeric values can be entered manually or included into the cell you make reference to.

                                                                        +

                                                                        The value of each bit position is counted if either of the parameters has 1 at that position.

                                                                        +

                                                                        To apply the BITOR function,

                                                                        +
                                                                          +
                                                                        1. select the cell where you wish to display the result,
                                                                        2. +
                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                          or click the Function icon icon situated at the formula bar, +
                                                                        4. +
                                                                        5. select the Engineering function group from the list,
                                                                        6. +
                                                                        7. click the BITOR function,
                                                                        8. +
                                                                        9. enter the required arguments separating them by comma,
                                                                        10. +
                                                                        11. press the Enter button.
                                                                        12. +
                                                                        +

                                                                        The result will be displayed in the selected cell.

                                                                        +

                                                                        BITOR Function

                                                                        +
                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitrshift.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitrshift.htm new file mode 100644 index 000000000..bb1d4b99a --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitrshift.htm @@ -0,0 +1,36 @@ + + + + BITRSHIFT Function + + + + + +
                                                                        +

                                                                        BITRSHIFT Function

                                                                        +

                                                                        The BITRSHIFT function is one of the engineering functions. It is used to return a number shifted right by the specified number of bits.

                                                                        +

                                                                        The BITRSHIFT function syntax is:

                                                                        +

                                                                        BITRSHIFT(number, shift_amount)

                                                                        +

                                                                        where

                                                                        +

                                                                        number is an integer greater than or equal to 0,

                                                                        +

                                                                        shift_amount is a number of bits by which you want to shift number, an integer.

                                                                        +

                                                                        The numeric values can be entered manually or included into the cell you make reference to.

                                                                        +

                                                                        Shifting a number right is equivalent to removing digits from the rightmost side of the binary representation of the number.

                                                                        +

                                                                        To apply the BITRSHIFT function,

                                                                        +
                                                                          +
                                                                        1. select the cell where you wish to display the result,
                                                                        2. +
                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                          or click the Function icon icon situated at the formula bar, +
                                                                        4. +
                                                                        5. select the Engineering function group from the list,
                                                                        6. +
                                                                        7. click the BITRSHIFT function,
                                                                        8. +
                                                                        9. enter the required arguments separating them by comma,
                                                                        10. +
                                                                        11. press the Enter button.
                                                                        12. +
                                                                        +

                                                                        The result will be displayed in the selected cell.

                                                                        +

                                                                        BITRSHIFT Function

                                                                        +
                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/bitxor.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitxor.htm new file mode 100644 index 000000000..a67bab8fa --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/bitxor.htm @@ -0,0 +1,36 @@ + + + + BITXOR Function + + + + + +
                                                                        +

                                                                        BITXOR Function

                                                                        +

                                                                        The BITXOR function is one of the engineering functions. It is used to return a bitwise 'XOR' of two numbers.

                                                                        +

                                                                        The BITXOR function syntax is:

                                                                        +

                                                                        BITXOR(number1, number2)

                                                                        +

                                                                        where

                                                                        +

                                                                        number1 is a numeric value in decimal form greater than or equal to 0,

                                                                        +

                                                                        number2 is a numeric value in decimal form greater than or equal to 0.

                                                                        +

                                                                        The numeric values can be entered manually or included into the cell you make reference to.

                                                                        +

                                                                        The value of each bit position is 1 when the bit positions of the parameters are different.

                                                                        +

                                                                        To apply the BITXOR function,

                                                                        +
                                                                          +
                                                                        1. select the cell where you wish to display the result,
                                                                        2. +
                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                          or click the Function icon icon situated at the formula bar, +
                                                                        4. +
                                                                        5. select the Engineering function group from the list,
                                                                        6. +
                                                                        7. click the BITXOR function,
                                                                        8. +
                                                                        9. enter the required arguments separating them by comma,
                                                                        10. +
                                                                        11. press the Enter button.
                                                                        12. +
                                                                        +

                                                                        The result will be displayed in the selected cell.

                                                                        +

                                                                        BITXOR Function

                                                                        +
                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling.htm index beae74c2f..32c162d14 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceiling.htm @@ -20,7 +20,7 @@

                                                                        To apply the CEILING function,

                                                                        1. select the cell where you wish to display the result,
                                                                        2. -
                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                          or click the Function icon icon situated at the formula bar,
                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceilingmath.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceilingmath.htm index ae4944c15..8d5b0fd4a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceilingmath.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceilingmath.htm @@ -20,7 +20,7 @@

                                                                          To apply the CEILING.MATH function,

                                                                          1. select the cell where you wish to display the result,
                                                                          2. -
                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                            or click the Function icon icon situated at the formula bar,
                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceilingprecise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceilingprecise.htm index ca0ac1c07..5afe0010d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ceilingprecise.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ceilingprecise.htm @@ -19,7 +19,7 @@

                                                                            To apply the CEILING.PRECISE function,

                                                                            1. select the cell where you wish to display the result,
                                                                            2. -
                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                              or click the Function icon icon situated at the formula bar,
                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/char.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/char.htm index 3a60ab822..0b160944b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/char.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/char.htm @@ -16,7 +16,7 @@

                                                                              To apply the CHAR function,

                                                                              1. select the cell where you wish to display the result,
                                                                              2. -
                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                or click the Function icon icon situated at the formula bar,
                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chidist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chidist.htm index 79a3d0fde..9dd599ea8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chidist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chidist.htm @@ -19,7 +19,7 @@

                                                                                To apply the CHIDIST function,

                                                                                1. select the cell where you wish to display the result,
                                                                                2. -
                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chiinv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chiinv.htm index 68333edfb..09618a1a1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chiinv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chiinv.htm @@ -19,7 +19,7 @@

                                                                                  To apply the CHIINV function,

                                                                                  1. select the cell where you wish to display the result,
                                                                                  2. -
                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist-rt.htm index 6682d4fd5..d578d4805 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist-rt.htm @@ -19,7 +19,7 @@

                                                                                    To apply the CHISQ.DIST.RT function,

                                                                                    1. select the cell where you wish to display the result,
                                                                                    2. -
                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist.htm index f76593e03..5addd1572 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-dist.htm @@ -20,7 +20,7 @@

                                                                                      To apply the CHISQ.DIST function,

                                                                                      1. select the cell where you wish to display the result,
                                                                                      2. -
                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv-rt.htm index 584c5e387..583bc1f41 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv-rt.htm @@ -19,7 +19,7 @@

                                                                                        To apply the CHISQ.INV.RT function,

                                                                                        1. select the cell where you wish to display the result,
                                                                                        2. -
                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv.htm index 3c4d1ee22..27fa05d1c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-inv.htm @@ -19,7 +19,7 @@

                                                                                          To apply the CHISQ.INV function,

                                                                                          1. select the cell where you wish to display the result,
                                                                                          2. -
                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-test.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-test.htm new file mode 100644 index 000000000..1ce885955 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-test.htm @@ -0,0 +1,35 @@ + + + + CHISQ.TEST Function + + + + + +
                                                                                            +

                                                                                            CHISQ.TEST Function

                                                                                            +

                                                                                            The CHISQ.TEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.

                                                                                            +

                                                                                            The CHISQ.TEST function syntax is:

                                                                                            +

                                                                                            CHISQ.TEST(actual-range, expected-range)

                                                                                            +

                                                                                            where

                                                                                            +

                                                                                            actual-range is the range of observed (actual) values.

                                                                                            +

                                                                                            expected-range is the range of expected values.

                                                                                            +

                                                                                            The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. The values can be entered manually or included into the cells you make reference to.

                                                                                            +

                                                                                            To apply the CHISQ.TEST function,

                                                                                            +
                                                                                              +
                                                                                            1. select the cell where you wish to display the result,
                                                                                            2. +
                                                                                            3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                              or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                              or click the Function icon icon situated at the formula bar, +
                                                                                            4. +
                                                                                            5. select the Statistical function group from the list,
                                                                                            6. +
                                                                                            7. click the CHISQ.TEST function,
                                                                                            8. +
                                                                                            9. enter the required arguments separating them by commas,
                                                                                            10. +
                                                                                            11. press the Enter button.
                                                                                            12. +
                                                                                            +

                                                                                            The result will be displayed in the selected cell.

                                                                                            +

                                                                                            CHISQ.TEST Function

                                                                                            +
                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/chitest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/chitest.htm new file mode 100644 index 000000000..0d810c029 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/chitest.htm @@ -0,0 +1,35 @@ + + + + CHITEST Function + + + + + +
                                                                                            +

                                                                                            CHITEST Function

                                                                                            +

                                                                                            The CHITEST function is one of the statistical functions. It is used to return the test for independence, the value from the chi-squared (χ2) distribution for the statistic and the appropriate degrees of freedom.

                                                                                            +

                                                                                            The CHITEST function syntax is:

                                                                                            +

                                                                                            CHITEST(actual-range, expected-range)

                                                                                            +

                                                                                            where

                                                                                            +

                                                                                            actual-range is the range of observed (actual) values.

                                                                                            +

                                                                                            expected-range is the range of expected values.

                                                                                            +

                                                                                            The ranges must contain the same number of values. Each of the expected values should be greater than or equal to 5. The values can be entered manually or included into the cells you make reference to.

                                                                                            +

                                                                                            To apply the CHITEST function,

                                                                                            +
                                                                                              +
                                                                                            1. select the cell where you wish to display the result,
                                                                                            2. +
                                                                                            3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                              or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                              or click the Function icon icon situated at the formula bar, +
                                                                                            4. +
                                                                                            5. select the Statistical function group from the list,
                                                                                            6. +
                                                                                            7. click the CHITEST function,
                                                                                            8. +
                                                                                            9. enter the required arguments separating them by commas,
                                                                                            10. +
                                                                                            11. press the Enter button.
                                                                                            12. +
                                                                                            +

                                                                                            The result will be displayed in the selected cell.

                                                                                            +

                                                                                            CHITEST Function

                                                                                            +
                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/choose.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/choose.htm index 2247b1b13..b704cb701 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/choose.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/choose.htm @@ -18,7 +18,7 @@

                                                                                            To apply the CHOOSE function,

                                                                                            1. select the cell where you wish to display the result,
                                                                                            2. -
                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/clean.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/clean.htm index 2af8f95fd..098a7e204 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/clean.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/clean.htm @@ -16,7 +16,7 @@

                                                                                              To apply the CLEAN function,

                                                                                              1. select the cell where you wish to display the result,
                                                                                              2. -
                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/code.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/code.htm index f8e517ecd..d8a4add3d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/code.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/code.htm @@ -16,7 +16,7 @@

                                                                                                To apply the CODE function,

                                                                                                1. select the cell where you wish to display the result,
                                                                                                2. -
                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/column.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/column.htm index 65eeea2ec..d6cb4c909 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/column.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/column.htm @@ -17,7 +17,7 @@

                                                                                                  To apply the COLUMN function,

                                                                                                  1. select the cell where you wish to display the result,
                                                                                                  2. -
                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/columns.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/columns.htm index 85d4c7952..8871479eb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/columns.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/columns.htm @@ -16,7 +16,7 @@

                                                                                                    To apply the COLUMNS function,

                                                                                                    1. select the cell where you wish to display the result,
                                                                                                    2. -
                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/combin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/combin.htm index bb565c610..d8961e6a9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/combin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/combin.htm @@ -19,7 +19,7 @@

                                                                                                      To apply the COMBIN function,

                                                                                                      1. select the cell where you wish to display the result,
                                                                                                      2. -
                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/combina.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/combina.htm index f994270c3..750c3acc5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/combina.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/combina.htm @@ -19,7 +19,7 @@

                                                                                                        To apply the COMBINA function,

                                                                                                        1. select the cell where you wish to display the result,
                                                                                                        2. -
                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/complex.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/complex.htm index db2c62966..ab44e508b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/complex.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/complex.htm @@ -20,7 +20,7 @@

                                                                                                          To apply the COMPLEX function,

                                                                                                          1. select the cell where you wish to display the result,
                                                                                                          2. -
                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/concat.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/concat.htm index ce8a18189..1d0996b28 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/concat.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/concat.htm @@ -16,7 +16,7 @@

                                                                                                            To apply the CONCAT function,

                                                                                                            1. select the cell where you wish to display the result,
                                                                                                            2. -
                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/concatenate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/concatenate.htm index e54596c87..36a6e281b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/concatenate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/concatenate.htm @@ -16,7 +16,7 @@

                                                                                                              To apply the CONCATENATE function,

                                                                                                              1. select the cell where you wish to display the result,
                                                                                                              2. -
                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-norm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-norm.htm index 4ceb1daff..1bf50f4f0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-norm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-norm.htm @@ -20,7 +20,7 @@

                                                                                                                To apply the CONFIDENCE.NORM function,

                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                2. -
                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-t.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-t.htm index 968f1d770..7a0a6384f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-t.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence-t.htm @@ -20,7 +20,7 @@

                                                                                                                  To apply the CONFIDENCE.T function,

                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                  2. -
                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence.htm index 35290a162..b7193d16f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/confidence.htm @@ -20,7 +20,7 @@

                                                                                                                    To apply the CONFIDENCE function,

                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                    2. -
                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/correl.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/correl.htm index b4a3b4ed4..1526ddbad 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/correl.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/correl.htm @@ -17,7 +17,7 @@

                                                                                                                      To apply the CORREL function,

                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                      2. -
                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cos.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cos.htm index ff7ae7f0a..20bc15309 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cos.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cos.htm @@ -16,7 +16,7 @@

                                                                                                                        To apply the COS function,

                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                        2. -
                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cosh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cosh.htm index 20729c402..0d7f66a5e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cosh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cosh.htm @@ -16,7 +16,7 @@

                                                                                                                          To apply the COSH function,

                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                          2. -
                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cot.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cot.htm index 3ddbbf372..7361e2b4e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cot.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cot.htm @@ -16,7 +16,7 @@

                                                                                                                            To apply the COT function,

                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                            2. -
                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coth.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coth.htm index 18ee86ea6..e54ce3b85 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coth.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coth.htm @@ -16,7 +16,7 @@

                                                                                                                              To apply the COTH function,

                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                              2. -
                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/count.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/count.htm index dabb4fb2f..7b046c50d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/count.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/count.htm @@ -16,7 +16,7 @@

                                                                                                                                To apply the COUNT function,

                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                2. -
                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/counta.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/counta.htm index ecf17cae0..52ae891d1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/counta.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/counta.htm @@ -16,7 +16,7 @@

                                                                                                                                  To apply the COUNTA function,

                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                  2. -
                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/countblank.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/countblank.htm index 090a42dd6..c0a9c172c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/countblank.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/countblank.htm @@ -16,7 +16,7 @@

                                                                                                                                    To apply the COUNTBLANK function,

                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                    2. -
                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/countif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/countif.htm index 4fdd18497..18d757c00 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/countif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/countif.htm @@ -19,7 +19,7 @@

                                                                                                                                      To apply the COUNTIF function,

                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                      2. -
                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/countifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/countifs.htm index ff304e1d9..b03fd0005 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/countifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/countifs.htm @@ -20,7 +20,7 @@

                                                                                                                                        To apply the COUNTIFS function,

                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                        2. -
                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaybs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaybs.htm index b1826e46d..86bc881d2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaybs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaybs.htm @@ -48,7 +48,7 @@

                                                                                                                                          To apply the COUPDAYBS function,

                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                          2. -
                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdays.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdays.htm index b819d60c5..67abc8d97 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdays.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdays.htm @@ -48,7 +48,7 @@

                                                                                                                                            To apply the COUPDAYS function,

                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                            2. -
                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaysnc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaysnc.htm index a19d1ca76..e7029ecdc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaysnc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupdaysnc.htm @@ -48,7 +48,7 @@

                                                                                                                                              To apply the COUPDAYSNC function,

                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                              2. -
                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupncd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupncd.htm index 544949e45..fcec9cc2e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupncd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupncd.htm @@ -48,7 +48,7 @@

                                                                                                                                                To apply the COUPNCD function,

                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                2. -
                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupnum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupnum.htm index 9b25e65fa..af9b335a1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/coupnum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/coupnum.htm @@ -48,7 +48,7 @@

                                                                                                                                                  To apply the COUPNUM function,

                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                  2. -
                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/couppcd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/couppcd.htm index dd85c6919..0c307487f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/couppcd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/couppcd.htm @@ -48,7 +48,7 @@

                                                                                                                                                    To apply the COUPPCD function,

                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                    2. -
                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/covar.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/covar.htm index a1963a603..902903198 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/covar.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/covar.htm @@ -17,7 +17,7 @@

                                                                                                                                                      To apply the COVAR function,

                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                      2. -
                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-p.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-p.htm new file mode 100644 index 000000000..b525f677f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-p.htm @@ -0,0 +1,33 @@ + + + + COVARIANCE.P Function + + + + + +
                                                                                                                                                        +

                                                                                                                                                        COVARIANCE.P Function

                                                                                                                                                        +

                                                                                                                                                        The COVARIANCE.P function is one of the statistical functions. It is used to return population covariance, the average of the products of deviations for each data point pair in two data sets; use covariance to determine the relationship between two data sets.

                                                                                                                                                        +

                                                                                                                                                        The COVARIANCE.P function syntax is:

                                                                                                                                                        +

                                                                                                                                                        COVARIANCE.P(array-1, array-2)

                                                                                                                                                        +

                                                                                                                                                        where array-1(2) is the selected range of cells with the same number of elements.

                                                                                                                                                        +

                                                                                                                                                        Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

                                                                                                                                                        +

                                                                                                                                                        To apply the COVARIANCE.P function,

                                                                                                                                                        +
                                                                                                                                                          +
                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                        2. +
                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                        4. +
                                                                                                                                                        5. select the Statistical function group from the list,
                                                                                                                                                        6. +
                                                                                                                                                        7. click the COVARIANCE.P function,
                                                                                                                                                        8. +
                                                                                                                                                        9. enter the required arguments manually or select them with the mouse separating them by comma,
                                                                                                                                                        10. +
                                                                                                                                                        11. press the Enter button.
                                                                                                                                                        12. +
                                                                                                                                                        +

                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                        +

                                                                                                                                                        COVARIANCE.P Function

                                                                                                                                                        +
                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-s.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-s.htm new file mode 100644 index 000000000..d9dc3b403 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-s.htm @@ -0,0 +1,33 @@ + + + + COVARIANCE.S Function + + + + + +
                                                                                                                                                        +

                                                                                                                                                        COVARIANCE.S Function

                                                                                                                                                        +

                                                                                                                                                        The COVARIANCE.S function is one of the statistical functions. It is used to return the sample covariance, the average of the products of deviations for each data point pair in two data sets.

                                                                                                                                                        +

                                                                                                                                                        The COVARIANCE.S function syntax is:

                                                                                                                                                        +

                                                                                                                                                        COVARIANCE.S(array-1, array-2)

                                                                                                                                                        +

                                                                                                                                                        where array-1(2) is the selected range of cells with the same number of elements.

                                                                                                                                                        +

                                                                                                                                                        Note: if array-1(2) contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

                                                                                                                                                        +

                                                                                                                                                        To apply the COVARIANCE.S function,

                                                                                                                                                        +
                                                                                                                                                          +
                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                        2. +
                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                        4. +
                                                                                                                                                        5. select the Statistical function group from the list,
                                                                                                                                                        6. +
                                                                                                                                                        7. click the COVARIANCE.S function,
                                                                                                                                                        8. +
                                                                                                                                                        9. enter the required arguments manually or select them with the mouse separating them by comma,
                                                                                                                                                        10. +
                                                                                                                                                        11. press the Enter button.
                                                                                                                                                        12. +
                                                                                                                                                        +

                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                        +

                                                                                                                                                        COVARIANCE.S Function

                                                                                                                                                        +
                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/critbinom.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/critbinom.htm index 05e67913f..e61ff6604 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/critbinom.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/critbinom.htm @@ -20,7 +20,7 @@

                                                                                                                                                        To apply the CRITBINOM function,

                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                        2. -
                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/csc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/csc.htm index b63ad21ea..a00d0a72a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/csc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/csc.htm @@ -16,7 +16,7 @@

                                                                                                                                                          To apply the CSC function,

                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                          2. -
                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/csch.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/csch.htm index 1d68e2fe3..22ebe7a00 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/csch.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/csch.htm @@ -16,7 +16,7 @@

                                                                                                                                                            To apply the CSCH function,

                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                            2. -
                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cumipmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cumipmt.htm index ec0ff644b..b8b5962bc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cumipmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cumipmt.htm @@ -24,7 +24,7 @@

                                                                                                                                                              To apply the CUMIPMT function,

                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                              2. -
                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/cumprinc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/cumprinc.htm index 29c188d56..508640a0e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/cumprinc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/cumprinc.htm @@ -24,7 +24,7 @@

                                                                                                                                                                To apply the CUMPRINC function,

                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                2. -
                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/date.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/date.htm index 690e2c26b..b4e542b4e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/date.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/date.htm @@ -16,7 +16,7 @@

                                                                                                                                                                  To apply the DATE function,

                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                  2. -
                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/datedif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/datedif.htm index a9aa1680c..d56142cf0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/datedif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/datedif.htm @@ -48,7 +48,7 @@

                                                                                                                                                                    To apply the DATEDIF function,

                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                    2. -
                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/datevalue.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/datevalue.htm index 9c2df5688..462ec01dd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/datevalue.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/datevalue.htm @@ -16,7 +16,7 @@

                                                                                                                                                                      To apply the DATEVALUE function,

                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                      2. -
                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/daverage.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/daverage.htm new file mode 100644 index 000000000..3d9a7683e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/daverage.htm @@ -0,0 +1,36 @@ + + + + DAVERAGE Function + + + + + +
                                                                                                                                                                        +

                                                                                                                                                                        DAVERAGE Function

                                                                                                                                                                        +

                                                                                                                                                                        The DAVERAGE function is one of the database functions. It is used to average the values in a field (column) of records in a list or database that match conditions you specify.

                                                                                                                                                                        +

                                                                                                                                                                        The DAVERAGE function syntax is:

                                                                                                                                                                        +

                                                                                                                                                                        DAVERAGE(database, field, criteria)

                                                                                                                                                                        +

                                                                                                                                                                        where

                                                                                                                                                                        +

                                                                                                                                                                        database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                        +

                                                                                                                                                                        field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                        +

                                                                                                                                                                        criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                        +

                                                                                                                                                                        To apply the DAVERAGE function,

                                                                                                                                                                        +
                                                                                                                                                                          +
                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                        2. +
                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                        4. +
                                                                                                                                                                        5. select the Database function group from the list,
                                                                                                                                                                        6. +
                                                                                                                                                                        7. click the DAVERAGE function,
                                                                                                                                                                        8. +
                                                                                                                                                                        9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                        10. +
                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                        12. +
                                                                                                                                                                        +

                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                        +

                                                                                                                                                                        DAVERAGE Function

                                                                                                                                                                        +
                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/day.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/day.htm index 8b1d57666..5af965734 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/day.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/day.htm @@ -16,7 +16,7 @@

                                                                                                                                                                        To apply the DAY function,

                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                        2. -
                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/days.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/days.htm new file mode 100644 index 000000000..163fac3f7 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/days.htm @@ -0,0 +1,33 @@ + + + + DAYS Function + + + + + +
                                                                                                                                                                          +

                                                                                                                                                                          DAYS Function

                                                                                                                                                                          +

                                                                                                                                                                          The DAYS function is one of the date and time functions. Is used to return the number of days between two dates.

                                                                                                                                                                          +

                                                                                                                                                                          The DAYS function syntax is:

                                                                                                                                                                          +

                                                                                                                                                                          DAYS(end-date, start-date)

                                                                                                                                                                          +

                                                                                                                                                                          where

                                                                                                                                                                          +

                                                                                                                                                                          end-date and start-date are two dates you wish to calculate the number of days between.

                                                                                                                                                                          +

                                                                                                                                                                          To apply the DAYS function,

                                                                                                                                                                          +
                                                                                                                                                                            +
                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                          2. +
                                                                                                                                                                          3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                            or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                          4. +
                                                                                                                                                                          5. select the Date and time function group from the list,
                                                                                                                                                                          6. +
                                                                                                                                                                          7. click the DAYS function,
                                                                                                                                                                          8. +
                                                                                                                                                                          9. enter the required arguments separating them by commas,
                                                                                                                                                                          10. +
                                                                                                                                                                          11. press the Enter button.
                                                                                                                                                                          12. +
                                                                                                                                                                          +

                                                                                                                                                                          The result will be displayed in the selected cell.

                                                                                                                                                                          +

                                                                                                                                                                          DAYS Function

                                                                                                                                                                          +
                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/days360.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/days360.htm index aeedbde9d..8b7632534 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/days360.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/days360.htm @@ -20,7 +20,7 @@

                                                                                                                                                                          To apply the DAYS360 function,

                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                          2. -
                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/db.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/db.htm index 196eca89d..9d2cc560e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/db.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/db.htm @@ -23,7 +23,7 @@
                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                            2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                            3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dcount.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dcount.htm new file mode 100644 index 000000000..2444c7d22 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dcount.htm @@ -0,0 +1,36 @@ + + + + DCOUNT Function + + + + + +
                                                                                                                                                                              +

                                                                                                                                                                              DCOUNT Function

                                                                                                                                                                              +

                                                                                                                                                                              The DCOUNT function is one of the database functions. It is used to count the cells that contain numbers in a field (column) of records in a list or database that match conditions that you specify.

                                                                                                                                                                              +

                                                                                                                                                                              The DCOUNT function syntax is:

                                                                                                                                                                              +

                                                                                                                                                                              DCOUNT(database, field, criteria)

                                                                                                                                                                              +

                                                                                                                                                                              where

                                                                                                                                                                              +

                                                                                                                                                                              database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                              +

                                                                                                                                                                              field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                              +

                                                                                                                                                                              criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                              +

                                                                                                                                                                              To apply the DCOUNT function,

                                                                                                                                                                              +
                                                                                                                                                                                +
                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                              2. +
                                                                                                                                                                              3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                              4. +
                                                                                                                                                                              5. select the Database function group from the list,
                                                                                                                                                                              6. +
                                                                                                                                                                              7. click the DCOUNT function,
                                                                                                                                                                              8. +
                                                                                                                                                                              9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                              10. +
                                                                                                                                                                              11. press the Enter button.
                                                                                                                                                                              12. +
                                                                                                                                                                              +

                                                                                                                                                                              The result will be displayed in the selected cell.

                                                                                                                                                                              +

                                                                                                                                                                              DCOUNT Function

                                                                                                                                                                              +
                                                                                                                                                                              + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dcounta.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dcounta.htm new file mode 100644 index 000000000..9beadbb3c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dcounta.htm @@ -0,0 +1,36 @@ + + + + DCOUNTA Function + + + + + +
                                                                                                                                                                              +

                                                                                                                                                                              DCOUNTA Function

                                                                                                                                                                              +

                                                                                                                                                                              The DCOUNTA function is one of the database functions. It is used to count the nonblank cells (logical values and text are also counted) in a field (column) of records in a list or database that match conditions that you specify.

                                                                                                                                                                              +

                                                                                                                                                                              The DCOUNTA function syntax is:

                                                                                                                                                                              +

                                                                                                                                                                              DCOUNTA(database, field, criteria)

                                                                                                                                                                              +

                                                                                                                                                                              where

                                                                                                                                                                              +

                                                                                                                                                                              database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                              +

                                                                                                                                                                              field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                              +

                                                                                                                                                                              criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                              +

                                                                                                                                                                              To apply the DCOUNTA function,

                                                                                                                                                                              +
                                                                                                                                                                                +
                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                              2. +
                                                                                                                                                                              3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                              4. +
                                                                                                                                                                              5. select the Database function group from the list,
                                                                                                                                                                              6. +
                                                                                                                                                                              7. click the DCOUNTA function,
                                                                                                                                                                              8. +
                                                                                                                                                                              9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                              10. +
                                                                                                                                                                              11. press the Enter button.
                                                                                                                                                                              12. +
                                                                                                                                                                              +

                                                                                                                                                                              The result will be displayed in the selected cell.

                                                                                                                                                                              +

                                                                                                                                                                              DCOUNTA Function

                                                                                                                                                                              +
                                                                                                                                                                              + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ddb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ddb.htm index 09f118fe4..7908e8590 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ddb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ddb.htm @@ -24,7 +24,7 @@
                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                              2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                              3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2bin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2bin.htm index 77156c1f6..acaeff750 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2bin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2bin.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                To apply the DEC2BIN function,

                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                2. -
                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2hex.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2hex.htm index 6e724f21f..e4f1bdf2d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2hex.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2hex.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                  To apply the DEC2HEX function,

                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                  2. -
                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2oct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2oct.htm index 1062f8200..661e9fdfb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2oct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dec2oct.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                    To apply the DEC2OCT function,

                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                    2. -
                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/decimal.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/decimal.htm index 60627210c..50c7c6cb8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/decimal.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/decimal.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                      To apply the DECIMAL function,

                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                      2. -
                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/degrees.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/degrees.htm index e3a706491..729878559 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/degrees.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/degrees.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                        To apply the DEGREES function,

                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                        2. -
                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/delta.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/delta.htm index bd9e3c056..fa04a282d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/delta.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/delta.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                          To apply the DELTA function,

                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                          2. -
                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/devsq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/devsq.htm index b41c908e2..a8ccd1c3d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/devsq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/devsq.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                            To apply the DEVSQ function,

                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                            2. -
                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dget.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dget.htm new file mode 100644 index 000000000..c33c9638b --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dget.htm @@ -0,0 +1,36 @@ + + + + DGET Function + + + + + +
                                                                                                                                                                                              +

                                                                                                                                                                                              DGET Function

                                                                                                                                                                                              +

                                                                                                                                                                                              The DGET function is one of the database functions. It is used to extract a single value from a column of a list or database that matches conditions that you specify.

                                                                                                                                                                                              +

                                                                                                                                                                                              The DGET function syntax is:

                                                                                                                                                                                              +

                                                                                                                                                                                              DGET(database, field, criteria)

                                                                                                                                                                                              +

                                                                                                                                                                                              where

                                                                                                                                                                                              +

                                                                                                                                                                                              database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                              +

                                                                                                                                                                                              field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                              +

                                                                                                                                                                                              criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                              +

                                                                                                                                                                                              To apply the DGET function,

                                                                                                                                                                                              +
                                                                                                                                                                                                +
                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                              2. +
                                                                                                                                                                                              3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                              4. +
                                                                                                                                                                                              5. select the Database function group from the list,
                                                                                                                                                                                              6. +
                                                                                                                                                                                              7. click the DGET function,
                                                                                                                                                                                              8. +
                                                                                                                                                                                              9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                              10. +
                                                                                                                                                                                              11. press the Enter button.
                                                                                                                                                                                              12. +
                                                                                                                                                                                              +

                                                                                                                                                                                              The result will be displayed in the selected cell.

                                                                                                                                                                                              +

                                                                                                                                                                                              DGET Function

                                                                                                                                                                                              +
                                                                                                                                                                                              + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/disc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/disc.htm index f30bdface..24abace89 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/disc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/disc.htm @@ -50,7 +50,7 @@
                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                              2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                              3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dmax.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dmax.htm new file mode 100644 index 000000000..cbd344e97 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dmax.htm @@ -0,0 +1,36 @@ + + + + DMAX Function + + + + + +
                                                                                                                                                                                                +

                                                                                                                                                                                                DMAX Function

                                                                                                                                                                                                +

                                                                                                                                                                                                The DMAX function is one of the database functions. It is used to return the largest number in a field (column) of records in a list or database that matches conditions that you specify.

                                                                                                                                                                                                +

                                                                                                                                                                                                The DMAX function syntax is:

                                                                                                                                                                                                +

                                                                                                                                                                                                DMAX(database, field, criteria)

                                                                                                                                                                                                +

                                                                                                                                                                                                where

                                                                                                                                                                                                +

                                                                                                                                                                                                database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                                +

                                                                                                                                                                                                field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                                +

                                                                                                                                                                                                criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                                +

                                                                                                                                                                                                To apply the DMAX function,

                                                                                                                                                                                                +
                                                                                                                                                                                                  +
                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                2. +
                                                                                                                                                                                                3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                4. +
                                                                                                                                                                                                5. select the Database function group from the list,
                                                                                                                                                                                                6. +
                                                                                                                                                                                                7. click the DMAX function,
                                                                                                                                                                                                8. +
                                                                                                                                                                                                9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                                10. +
                                                                                                                                                                                                11. press the Enter button.
                                                                                                                                                                                                12. +
                                                                                                                                                                                                +

                                                                                                                                                                                                The result will be displayed in the selected cell.

                                                                                                                                                                                                +

                                                                                                                                                                                                DMAX Function

                                                                                                                                                                                                +
                                                                                                                                                                                                + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dmin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dmin.htm new file mode 100644 index 000000000..b5945a167 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dmin.htm @@ -0,0 +1,36 @@ + + + + DMIN Function + + + + + +
                                                                                                                                                                                                +

                                                                                                                                                                                                DMIN Function

                                                                                                                                                                                                +

                                                                                                                                                                                                The DMIN function is one of the database functions. It is used to return the smallest number in a field (column) of records in a list or database that matches conditions that you specify.

                                                                                                                                                                                                +

                                                                                                                                                                                                The DMIN function syntax is:

                                                                                                                                                                                                +

                                                                                                                                                                                                DMIN(database, field, criteria)

                                                                                                                                                                                                +

                                                                                                                                                                                                where

                                                                                                                                                                                                +

                                                                                                                                                                                                database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                                +

                                                                                                                                                                                                field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                                +

                                                                                                                                                                                                criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                                +

                                                                                                                                                                                                To apply the DMIN function,

                                                                                                                                                                                                +
                                                                                                                                                                                                  +
                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                2. +
                                                                                                                                                                                                3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                4. +
                                                                                                                                                                                                5. select the Database function group from the list,
                                                                                                                                                                                                6. +
                                                                                                                                                                                                7. click the DMIN function,
                                                                                                                                                                                                8. +
                                                                                                                                                                                                9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                                10. +
                                                                                                                                                                                                11. press the Enter button.
                                                                                                                                                                                                12. +
                                                                                                                                                                                                +

                                                                                                                                                                                                The result will be displayed in the selected cell.

                                                                                                                                                                                                +

                                                                                                                                                                                                DMIN Function

                                                                                                                                                                                                +
                                                                                                                                                                                                + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollar.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollar.htm index f60e5b037..c6b128d51 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollar.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollar.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                To apply the DOLLAR function,

                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                2. -
                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarde.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarde.htm index fb6dc4a0f..14f612a18 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarde.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarde.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                  To apply the DOLLARDE function,

                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                  2. -
                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarfr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarfr.htm index 276cd788d..75080216c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarfr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dollarfr.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                    To apply the DOLLARFR function,

                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                    2. -
                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dproduct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dproduct.htm new file mode 100644 index 000000000..84d442298 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dproduct.htm @@ -0,0 +1,36 @@ + + + + DPRODUCT Function + + + + + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      DPRODUCT Function

                                                                                                                                                                                                      +

                                                                                                                                                                                                      The DPRODUCT function is one of the database functions. It is used to multiply the values in a field (column) of records in a list or database that match conditions that you specify.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      The DPRODUCT function syntax is:

                                                                                                                                                                                                      +

                                                                                                                                                                                                      DPRODUCT(database, field, criteria)

                                                                                                                                                                                                      +

                                                                                                                                                                                                      where

                                                                                                                                                                                                      +

                                                                                                                                                                                                      database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      To apply the DPRODUCT function,

                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                      2. +
                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                      4. +
                                                                                                                                                                                                      5. select the Database function group from the list,
                                                                                                                                                                                                      6. +
                                                                                                                                                                                                      7. click the DPRODUCT function,
                                                                                                                                                                                                      8. +
                                                                                                                                                                                                      9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                                      10. +
                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                      12. +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      DPRODUCT Function

                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdev.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdev.htm new file mode 100644 index 000000000..0bd80d43f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdev.htm @@ -0,0 +1,36 @@ + + + + DSTDEV Function + + + + + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSTDEV Function

                                                                                                                                                                                                      +

                                                                                                                                                                                                      The DSTDEV function is one of the database functions. It is used to estimate the standard deviation of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      The DSTDEV function syntax is:

                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSTDEV(database, field, criteria)

                                                                                                                                                                                                      +

                                                                                                                                                                                                      where

                                                                                                                                                                                                      +

                                                                                                                                                                                                      database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      To apply the DSTDEV function,

                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                      2. +
                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                      4. +
                                                                                                                                                                                                      5. select the Database function group from the list,
                                                                                                                                                                                                      6. +
                                                                                                                                                                                                      7. click the DSTDEV function,
                                                                                                                                                                                                      8. +
                                                                                                                                                                                                      9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                                      10. +
                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                      12. +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSTDEV Function

                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdevp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdevp.htm new file mode 100644 index 000000000..fbe706920 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dstdevp.htm @@ -0,0 +1,36 @@ + + + + DSTDEVP Function + + + + + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSTDEVP Function

                                                                                                                                                                                                      +

                                                                                                                                                                                                      The DSTDEVP function is one of the database functions. It is used to calculate the standard deviation of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      The DSTDEVP function syntax is:

                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSTDEVP(database, field, criteria)

                                                                                                                                                                                                      +

                                                                                                                                                                                                      where

                                                                                                                                                                                                      +

                                                                                                                                                                                                      database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      To apply the DSTDEVP function,

                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                      2. +
                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                      4. +
                                                                                                                                                                                                      5. select the Database function group from the list,
                                                                                                                                                                                                      6. +
                                                                                                                                                                                                      7. click the DSTDEVP function,
                                                                                                                                                                                                      8. +
                                                                                                                                                                                                      9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                                      10. +
                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                      12. +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSTDEVP Function

                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dsum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dsum.htm new file mode 100644 index 000000000..fb2e9a567 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dsum.htm @@ -0,0 +1,36 @@ + + + + DSUM Function + + + + + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSUM Function

                                                                                                                                                                                                      +

                                                                                                                                                                                                      The DSUM function is one of the database functions. It is used to add the numbers in a field (column) of records in a list or database that match conditions that you specify.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      The DSUM function syntax is:

                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSUM(database, field, criteria)

                                                                                                                                                                                                      +

                                                                                                                                                                                                      where

                                                                                                                                                                                                      +

                                                                                                                                                                                                      database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      To apply the DSUM function,

                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                      2. +
                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                      4. +
                                                                                                                                                                                                      5. select the Database function group from the list,
                                                                                                                                                                                                      6. +
                                                                                                                                                                                                      7. click the DSUM function,
                                                                                                                                                                                                      8. +
                                                                                                                                                                                                      9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                                      10. +
                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                      12. +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                      +

                                                                                                                                                                                                      DSUM Function

                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/duration.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/duration.htm index d204c87c0..2b58a53ac 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/duration.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/duration.htm @@ -51,7 +51,7 @@
                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                      2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                      3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dvar.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dvar.htm new file mode 100644 index 000000000..4cad9ba4f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dvar.htm @@ -0,0 +1,36 @@ + + + + DVAR Function + + + + + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        DVAR Function

                                                                                                                                                                                                        +

                                                                                                                                                                                                        The DVAR function is one of the database functions. It is used to estimate the variance of a population based on a sample by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        The DVAR function syntax is:

                                                                                                                                                                                                        +

                                                                                                                                                                                                        DVAR(database, field, criteria)

                                                                                                                                                                                                        +

                                                                                                                                                                                                        where

                                                                                                                                                                                                        +

                                                                                                                                                                                                        database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        To apply the DVAR function,

                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                        4. +
                                                                                                                                                                                                        5. select the Database function group from the list,
                                                                                                                                                                                                        6. +
                                                                                                                                                                                                        7. click the DVAR function,
                                                                                                                                                                                                        8. +
                                                                                                                                                                                                        9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                                        10. +
                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                        12. +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        DVAR Function

                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/dvarp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/dvarp.htm new file mode 100644 index 000000000..076d4c891 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/dvarp.htm @@ -0,0 +1,36 @@ + + + + DVARP Function + + + + + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        DVARP Function

                                                                                                                                                                                                        +

                                                                                                                                                                                                        The DVARP function is one of the database functions. It is used to calculate the variance of a population based on the entire population by using the numbers in a field (column) of records in a list or database that match conditions that you specify.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        The DVARP function syntax is:

                                                                                                                                                                                                        +

                                                                                                                                                                                                        DVARP(database, field, criteria)

                                                                                                                                                                                                        +

                                                                                                                                                                                                        where

                                                                                                                                                                                                        +

                                                                                                                                                                                                        database is the range of cells that make up a database. It must contain column headings in the first row.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        field is an argument that specifies which field (i.e. column) should be used. It can be specified as a number of the necessary column, or the column heading enclosed in quotation marks.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        criteria is the range of cells that contain conditions. It must contain at least one field name (column heading) and at least one cell below that specifies the condition to be applied to this field in the database. The criteria cell range should not overlap the database range.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        To apply the DVARP function,

                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                        4. +
                                                                                                                                                                                                        5. select the Database function group from the list,
                                                                                                                                                                                                        6. +
                                                                                                                                                                                                        7. click the DVARP function,
                                                                                                                                                                                                        8. +
                                                                                                                                                                                                        9. enter the required arguments separating them by commas or select a range of cells with the mouse, +
                                                                                                                                                                                                        10. +
                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                        12. +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        DVARP Function

                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ecma-ceiling.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ecma-ceiling.htm new file mode 100644 index 000000000..ec82a563f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ecma-ceiling.htm @@ -0,0 +1,35 @@ + + + + ECMA.CEILING Function + + + + + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        ECMA.CEILING Function

                                                                                                                                                                                                        +

                                                                                                                                                                                                        The ECMA.CEILING function is one of the math and trigonometry functions. It is used to round the number up to the nearest multiple of significance. Negative numbers are rounded towards zero.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        The ECMA.CEILING function syntax is:

                                                                                                                                                                                                        +

                                                                                                                                                                                                        ECMA.CEILING(x, significance)

                                                                                                                                                                                                        +

                                                                                                                                                                                                        where

                                                                                                                                                                                                        +

                                                                                                                                                                                                        x is the number you wish to round up,

                                                                                                                                                                                                        +

                                                                                                                                                                                                        significance is the multiple of significance you wish to round up to,

                                                                                                                                                                                                        +

                                                                                                                                                                                                        The numeric values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        To apply the ECMA.CEILING function,

                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                        2. +
                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                        4. +
                                                                                                                                                                                                        5. select the Math and trigonometry function group from the list,
                                                                                                                                                                                                        6. +
                                                                                                                                                                                                        7. click the ECMA.CEILING function,
                                                                                                                                                                                                        8. +
                                                                                                                                                                                                        9. enter the required arguments separating them by comma,
                                                                                                                                                                                                        10. +
                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                        12. +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                        +

                                                                                                                                                                                                        ECMA.CEILING Function

                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/edate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/edate.htm index 27b522209..f1379a53c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/edate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/edate.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                        To apply the EDATE function,

                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                        2. -
                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/effect.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/effect.htm index 961aef9ac..4c5a67a96 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/effect.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/effect.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                          To apply the EFFECT function,

                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                          2. -
                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/eomonth.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/eomonth.htm index 81080efc7..dfbcdbd44 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/eomonth.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/eomonth.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                            To apply the EOMONTH function,

                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                            2. -
                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/erf-precise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/erf-precise.htm new file mode 100644 index 000000000..b668358ed --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/erf-precise.htm @@ -0,0 +1,34 @@ + + + + ERF.PRECISE Function + + + + + +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              ERF.PRECISE Function

                                                                                                                                                                                                              +

                                                                                                                                                                                                              The ERF.PRECISE function is one of the engineering functions. It is used to return the error function integrated between 0 and the specified lower limit.

                                                                                                                                                                                                              +

                                                                                                                                                                                                              The ERF.PRECISE function syntax is:

                                                                                                                                                                                                              +

                                                                                                                                                                                                              ERF.PRECISE(x)

                                                                                                                                                                                                              +

                                                                                                                                                                                                              where

                                                                                                                                                                                                              +

                                                                                                                                                                                                              x is the lower limit of integration.

                                                                                                                                                                                                              +

                                                                                                                                                                                                              The numeric value can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                              +

                                                                                                                                                                                                              To apply the ERF.PRECISE function,

                                                                                                                                                                                                              +
                                                                                                                                                                                                                +
                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                              2. +
                                                                                                                                                                                                              3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                              4. +
                                                                                                                                                                                                              5. select the Engineering function group from the list,
                                                                                                                                                                                                              6. +
                                                                                                                                                                                                              7. click the ERF.PRECISE function,
                                                                                                                                                                                                              8. +
                                                                                                                                                                                                              9. enter the required argument,
                                                                                                                                                                                                              10. +
                                                                                                                                                                                                              11. press the Enter button.
                                                                                                                                                                                                              12. +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              The result will be displayed in the selected cell.

                                                                                                                                                                                                              +

                                                                                                                                                                                                              ERF.PRECISE Function

                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/erf.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/erf.htm index 84b9b9f1f..2a0ae9108 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/erf.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/erf.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                              To apply the ERF function,

                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                              2. -
                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc-precise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc-precise.htm new file mode 100644 index 000000000..c1a5bf175 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc-precise.htm @@ -0,0 +1,32 @@ + + + + ERFC.PRECISE Function + + + + + +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                ERFC.PRECISE Function

                                                                                                                                                                                                                +

                                                                                                                                                                                                                The ERFC.PRECISE function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity.

                                                                                                                                                                                                                +

                                                                                                                                                                                                                The ERFC.PRECISE function syntax is:

                                                                                                                                                                                                                +

                                                                                                                                                                                                                ERFC.PRECISE(x)

                                                                                                                                                                                                                +

                                                                                                                                                                                                                where x is the lower limit of integration entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                +

                                                                                                                                                                                                                To apply the ERFC.PRECISE function,

                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                2. +
                                                                                                                                                                                                                3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                4. +
                                                                                                                                                                                                                5. select the Engineering function group from the list,
                                                                                                                                                                                                                6. +
                                                                                                                                                                                                                7. click the ERFC.PRECISE function,
                                                                                                                                                                                                                8. +
                                                                                                                                                                                                                9. enter the required argument,
                                                                                                                                                                                                                10. +
                                                                                                                                                                                                                11. press the Enter button.
                                                                                                                                                                                                                12. +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                The result will be displayed in the selected cell.

                                                                                                                                                                                                                +

                                                                                                                                                                                                                ERFC.PRECISE Function

                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc.htm index 465f21718..d3f80b2ae 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/erfc.htm @@ -12,11 +12,11 @@

                                                                                                                                                                                                                The ERFC function is one of the engineering functions. It is used to calculate the complementary error function integrated between the specified lower limit and infinity.

                                                                                                                                                                                                                The ERFC function syntax is:

                                                                                                                                                                                                                ERFC(lower-bound)

                                                                                                                                                                                                                -

                                                                                                                                                                                                                wherelower-bound is the lower limit of integration entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                +

                                                                                                                                                                                                                where lower-bound is the lower limit of integration entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                To apply the ERFC function,

                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/error.type.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/error.type.htm index d3ed0a84b..6cb13b753 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/error.type.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/error.type.htm @@ -58,7 +58,7 @@

                                                                                                                                                                                                                  To apply the ERROR.TYPE function,

                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/even.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/even.htm index 7f55cf1ca..ed068ba7d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/even.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/even.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                    To apply the EVEN function,

                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/exact.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/exact.htm index e66d28e37..2b4fb610e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/exact.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/exact.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                      To apply the EXACT function,

                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/exp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/exp.htm index d3fba6cd3..8a2c30a3a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/exp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/exp.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                        To apply the EXP function,

                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/expon-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/expon-dist.htm index cbb92ee7c..4e97e088d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/expon-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/expon-dist.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                          To apply the EXPON.DIST function,

                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/expondist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/expondist.htm index 98ca60418..21e6b8d60 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/expondist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/expondist.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                            To apply the EXPONDIST function,

                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist-rt.htm index 3312a1ade..9f1dbf219 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist-rt.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                              To apply the F.DIST.RT function,

                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist.htm index 4a9ae0399..95f708170 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-dist.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                To apply the F.DIST function,

                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv-rt.htm index a79756424..63c4f34f0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv-rt.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                  To apply the F.INV.RT function,

                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv.htm index 9174f88aa..be060c9cc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/f-inv.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                    To apply the F.INV function,

                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fact.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fact.htm index 5c5547e10..97c0d1091 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fact.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fact.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                      To apply the FACT function,

                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/factdouble.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/factdouble.htm index b31c44862..c34eea445 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/factdouble.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/factdouble.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                        To apply the FACTDOUBLE function,

                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/false.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/false.htm index d8c26a3ed..e4c21fbf4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/false.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/false.htm @@ -15,7 +15,7 @@

                                                                                                                                                                                                                                          To apply the FALSE function,

                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fdist.htm index b27bafcca..1dfb3a628 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fdist.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                            To apply the FDIST function,

                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/find.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/find.htm index a30325338..62aa75766 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/find.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/find.htm @@ -22,7 +22,7 @@

                                                                                                                                                                                                                                              To apply the FIND/FINDB function,

                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/finv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/finv.htm index e8fa0cc97..0391653fb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/finv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/finv.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                To apply the FINV function,

                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fisher.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fisher.htm index 17bc90f3b..7fb091cfe 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fisher.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fisher.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                  To apply the FISHER function,

                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fisherinv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fisherinv.htm index d432b9c33..fe44d572b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fisherinv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fisherinv.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                    To apply the FISHERINV function,

                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fixed.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fixed.htm index 9905bd4e6..6c0d9789a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fixed.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fixed.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                      To apply the FIXED function,

                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/floor.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/floor.htm index 0ca76c268..e141c5d59 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/floor.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/floor.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                        To apply the FLOOR function,

                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/floormath.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/floormath.htm index cccc1df93..f98808cee 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/floormath.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/floormath.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                          To apply the FLOOR.MATH function,

                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/floorprecise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/floorprecise.htm index 88a2f174e..47f2746f2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/floorprecise.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/floorprecise.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                            To apply the FLOOR.PRECISE function,

                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-linear.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-linear.htm new file mode 100644 index 000000000..e70f55b0a --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-linear.htm @@ -0,0 +1,35 @@ + + + + FORECAST.LINEAR Function + + + + + +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              FORECAST.LINEAR Function

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              The FORECAST.LINEAR function is one of the statistical functions. It is used to calculate, or predict, a future value by using existing values; the predicted value is a y-value for a given x-value. The known values are existing x-values and y-values, and the new value is predicted by using linear regression.

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              The FORECAST.LINEAR function syntax is:

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              FORECAST.LINEAR(x, known_y's, known_x's)

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              where

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              x is an x-value for which you want to predict a new y-value, a numeric value entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              known_y's is an array of known y-values.

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              known_x's is an array of known x-values.

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              To apply the FORECAST.LINEAR function,

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                                              3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                              4. +
                                                                                                                                                                                                                                                              5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                              6. +
                                                                                                                                                                                                                                                              7. click the FORECAST.LINEAR function,
                                                                                                                                                                                                                                                              8. +
                                                                                                                                                                                                                                                              9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                              10. +
                                                                                                                                                                                                                                                              11. press the Enter button.
                                                                                                                                                                                                                                                              12. +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              FORECAST.LINEAR Function

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast.htm index beb08389d..3383e7003 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/forecast.htm @@ -13,12 +13,12 @@

                                                                                                                                                                                                                                                              The FORECAST function syntax is:

                                                                                                                                                                                                                                                              FORECAST(x, array-1, array-2)

                                                                                                                                                                                                                                                              where

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              x is a x-value used to predict the y-value, a numeric value entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              x is an x-value used to predict the y-value, a numeric value entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                              array-1(2) is the selected range of cells with the same number of elements.

                                                                                                                                                                                                                                                              To apply the FORECAST function,

                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/frequency.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/frequency.htm index 1a63bbc07..051b3af5b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/frequency.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/frequency.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                To apply the FREQUENCY function,

                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fv.htm index 6c066df21..1d787c723 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fv.htm @@ -23,7 +23,7 @@

                                                                                                                                                                                                                                                                  To apply the FV function,

                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/fvschedule.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/fvschedule.htm index 3b1a744fe..8d97908e7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/fvschedule.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/fvschedule.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                    To apply the FVSCHEDULE function,

                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-dist.htm index 6bcb2e784..dd04b6b7e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-dist.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                      To apply the GAMMA.DIST function,

                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-inv.htm index e46248ce5..fcf1f173b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma-inv.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                        To apply the GAMMA.INV function,

                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma.htm index ad5ac9ad1..4f75cb2b9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gamma.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                          To apply the GAMMA function,

                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammadist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammadist.htm index 5566126b7..e3249e31f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammadist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammadist.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                            To apply the GAMMADIST function,

                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammainv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammainv.htm index d811c412f..4a830daee 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammainv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammainv.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                              To apply the GAMMAINV function,

                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln-precise.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln-precise.htm index 1f5ef5f33..67351e79e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln-precise.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln-precise.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                To apply the GAMMALN.PRECISE function,

                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln.htm index ccbe13c09..eeeb2d931 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gammaln.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                  To apply the GAMMALN function,

                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gauss.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gauss.htm index 2847932e5..80852e2ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gauss.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gauss.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                    To apply the GAUSS function,

                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gcd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gcd.htm index 53f3938dc..548f89f88 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gcd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gcd.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                      To apply the GCD function,

                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/geomean.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/geomean.htm index 538c8f765..434aefcc9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/geomean.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/geomean.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                        To apply the GEOMEAN function,

                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/gestep.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/gestep.htm index 8deb782cd..933d9ee2c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/gestep.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/gestep.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                          To apply the GESTEP function,

                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/harmean.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/harmean.htm index 09eeb5bb8..9fdacbfbb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/harmean.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/harmean.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                            To apply the HARMEAN function,

                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2bin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2bin.htm index a8f4f2a6d..ce5fc0d89 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2bin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2bin.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                              To apply the HEX2BIN function,

                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2dec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2dec.htm index d2722b41d..e2d2ca4ba 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2dec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2dec.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                To apply the HEX2DEC function,

                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2oct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2oct.htm index 2967054d5..a3b7a48f4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2oct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hex2oct.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                  To apply the HEX2OCT function,

                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hlookup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hlookup.htm index d980c1dcf..2b2bb6b11 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hlookup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hlookup.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                    To apply the HLOOKUP function,

                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hour.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hour.htm index 864f7fac5..7ea63f685 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hour.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hour.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                      To apply the HOUR function,

                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeomdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeomdist.htm index 5ce981dfd..c634d6e2e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeomdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/hypgeomdist.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                        To apply the HYPGEOMDIST function,

                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/if.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/if.htm index ce3882805..20eac5b41 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/if.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/if.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                          To apply the IF function,

                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iferror.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iferror.htm index 3baa34783..da3bb0658 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iferror.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iferror.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                            To apply the IFERROR function,

                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ifna.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ifna.htm index d8f871158..b0d88cdaa 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ifna.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ifna.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                              To apply the IFNA function,

                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imabs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imabs.htm index f318acbde..062f4925f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imabs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imabs.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                To apply the IMABS function,

                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imaginary.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imaginary.htm index 50c2f53a3..581bd8b6b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imaginary.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imaginary.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                  To apply the IMAGINARY function,

                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imargument.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imargument.htm index 89033e0e5..f84a7130b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imargument.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imargument.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                    To apply the IMARGUMENT function,

                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imconjugate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imconjugate.htm index ca43b3612..ae19c2e05 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imconjugate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imconjugate.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                      To apply the IMCONJUGATE function,

                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcos.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcos.htm index 8d4f0c55f..2496d3925 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcos.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcos.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                        To apply the IMCOS function,

                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcosh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcosh.htm index 822586371..7676aaadd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcosh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcosh.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                          To apply the IMCOSH function,

                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcot.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcot.htm index b5adb8138..f0009b3e9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcot.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcot.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                            To apply the IMCOT function,

                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsc.htm index 36b1f0f15..e32a30ef1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsc.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                              To apply the IMCSC function,

                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsch.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsch.htm index 8e90f25d2..316fcc1ca 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsch.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imcsch.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                To apply the IMCSCH function,

                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imdiv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imdiv.htm index fb1efdcee..f95f77d40 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imdiv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imdiv.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                  To apply the IMDIV function,

                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imexp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imexp.htm index d11c6fd11..c10059e09 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imexp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imexp.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                    To apply the IMEXP function,

                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imln.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imln.htm index 9cc670f94..bfc5a579e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imln.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imln.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                      To apply the IMLN function,

                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog10.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog10.htm index f1e372cd6..4ec0cd826 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog10.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog10.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                        To apply the IMLOG10 function,

                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog2.htm index 6401c7be6..8061ded4d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imlog2.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                          To apply the IMLOG2 function,

                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/impower.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/impower.htm index 3a6012f6f..6bb9e9afe 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/impower.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/impower.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                            To apply the IMPOWER function,

                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/improduct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/improduct.htm index 299a4857d..c1345ef2b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/improduct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/improduct.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                              To apply the IMPRODUCT function,

                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imreal.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imreal.htm index d71c09d83..9f4a97b54 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imreal.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imreal.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                To apply the IMREAL function,

                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsec.htm index c596903f0..78e04ded2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsec.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                  To apply the IMSEC function,

                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsech.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsech.htm index 0412e1e6e..d36795773 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsech.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsech.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                    To apply the IMSECH function,

                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsin.htm index a3063a269..2559fc51f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsin.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                      To apply the IMSIN function,

                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsinh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsinh.htm index ffc738c67..fd799b23b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsinh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsinh.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                        To apply the IMSINH function,

                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsqrt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsqrt.htm index 8cee495fa..c51a6b06f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsqrt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsqrt.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                          To apply the IMSQRT function,

                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsub.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsub.htm index 3c4d646d3..fe4ff264d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsub.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsub.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                            To apply the IMSUB function,

                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsum.htm index fbba5fae4..0fd453480 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imsum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imsum.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                              To apply the IMSUM function,

                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/imtan.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/imtan.htm index 03c4d8d16..df9a9251b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/imtan.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/imtan.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                To apply the IMTAN function,

                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/index.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/index.htm index 8ecd394df..64899a29f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/index.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/index.htm @@ -24,7 +24,7 @@

                                                                                                                                                                                                                                                                                                                                                                  To apply the INDEX function,

                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/indirect.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/indirect.htm index 345b6d323..2a7eb1a59 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/indirect.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/indirect.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                    To apply the INDIRECT function,

                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/int.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/int.htm index 82e484366..2cd670293 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/int.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/int.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                      To apply the INT function,

                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/intercept.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/intercept.htm index 6b8361acc..34e9317e6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/intercept.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/intercept.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                        To apply the INTERCEPT function,

                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/intrate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/intrate.htm index e3b12e1da..98b3eb03e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/intrate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/intrate.htm @@ -50,7 +50,7 @@
                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                          2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                          3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ipmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ipmt.htm index 2a76b3c50..32c24be17 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ipmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ipmt.htm @@ -24,7 +24,7 @@

                                                                                                                                                                                                                                                                                                                                                                            To apply the IPMT function,

                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/irr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/irr.htm index 473bf64d2..1800be391 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/irr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/irr.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                              To apply the IRR function,

                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isblank.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isblank.htm index e8a908c3a..85ccd0a79 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isblank.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isblank.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                To apply the ISBLANK function,

                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iserr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iserr.htm index c366c2def..62393d747 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iserr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iserr.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                  To apply the ISERR function,

                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iserror.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iserror.htm index f1b9134a1..c0bf8651a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iserror.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iserror.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                    To apply the ISERROR function,

                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/iseven.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/iseven.htm index f7567ee1e..a7b52129a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/iseven.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/iseven.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                      To apply the ISEVEN function,

                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isformula.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isformula.htm new file mode 100644 index 000000000..cdd8ae797 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isformula.htm @@ -0,0 +1,32 @@ + + + + ISFORMULA Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        ISFORMULA Function

                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        The ISFORMULA function is one of the information functions. It is used to check whether there is a reference to a cell that contains a formula. If the cell contains a formula, the function returns TRUE, otherwise the function returns FALSE.

                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        The ISFORMULA function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        ISFORMULA(value)

                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        where value is a reference to a cell.

                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        To apply the ISFORMULA function,

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                                                                                                                                                                        5. select the Information function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                                                                                                                                                                        7. click the ISFORMULA function,
                                                                                                                                                                                                                                                                                                                                                                                        8. +
                                                                                                                                                                                                                                                                                                                                                                                        9. enter the required argument,
                                                                                                                                                                                                                                                                                                                                                                                        10. +
                                                                                                                                                                                                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                        12. +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        ISFORMULA Function

                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/islogical.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/islogical.htm index a58079544..e44e60cb5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/islogical.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/islogical.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                        To apply the ISLOGICAL function,

                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isna.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isna.htm index 556d3fe8c..8cde7ad16 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isna.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isna.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                          To apply the ISNA function,

                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isnontext.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isnontext.htm index c6a8a64c8..9f4983acc 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isnontext.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isnontext.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                            To apply the ISNONTEXT function,

                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isnumber.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isnumber.htm index 47ed3991b..8d5eca728 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isnumber.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isnumber.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                              To apply the ISNUMBER function,

                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isoceiling.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isoceiling.htm index 86eb96b9f..53590ab2d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isoceiling.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isoceiling.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                To apply the ISO.CEILING function,

                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isodd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isodd.htm index de591ac95..3b0c2bd94 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isodd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isodd.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                  To apply the ISODD function,

                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isoweeknum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isoweeknum.htm new file mode 100644 index 000000000..a2d7cd580 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isoweeknum.htm @@ -0,0 +1,34 @@ + + + + ISOWEEKNUM Function + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    ISOWEEKNUM Function

                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    The ISOWEEKNUM function is one of the date and time functions. It used to return number of the ISO week number of the year for a given date. Returns a number between 1 and 54.

                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    The ISOWEEKNUM function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    ISOWEEKNUM(date)

                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    where

                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    date is a date you want to find the ISO week number of. Can be a reference to a cell containing a date or a date returned by the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    To apply the ISOWEEKNUM function,

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                    5. select the Date and time function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                    7. click the ISOWEEKNUM function,
                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                    9. enter the required argument,
                                                                                                                                                                                                                                                                                                                                                                                                    10. +
                                                                                                                                                                                                                                                                                                                                                                                                    11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                    12. +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    ISOWEEKNUM Function

                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ispmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ispmt.htm index 28ec4d5d4..72459fa50 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ispmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ispmt.htm @@ -22,7 +22,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                    To apply the ISPMT function,

                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/isref.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/isref.htm index 249afdd13..249da2c27 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/isref.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/isref.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                      To apply the ISREF function,

                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/istext.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/istext.htm index 81e980c64..ebe12f202 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/istext.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/istext.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                        To apply the ISTEXT function,

                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/kurt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/kurt.htm index 693abe011..44685cb4e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/kurt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/kurt.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                          To apply the KURT function,

                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/large.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/large.htm index 19f900ac3..51f3b6a9e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/large.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/large.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                            To apply the LARGE function,

                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lcm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lcm.htm index 63823fb09..bbc40252f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lcm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lcm.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                              To apply the LCM function,

                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/left.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/left.htm index c95d3f966..450183711 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/left.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/left.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                To apply the LEFT/LEFTB function,

                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/len.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/len.htm index 3b9dc747d..b6366a7f4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/len.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/len.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the LEN/LENB function,

                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ln.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ln.htm index 1a0a55e44..f7398c522 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ln.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ln.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the LN function,

                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/log.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/log.htm index 6ba85d390..34ef9fc33 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/log.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/log.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the LOG function,

                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/log10.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/log10.htm index 08e4d32e7..9a64d5459 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/log10.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/log10.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the LOG10 function,

                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/loginv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/loginv.htm index ce337b5b4..f4e38cb5a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/loginv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/loginv.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the LOGINV function,

                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-dist.htm index c4cfcaaf4..6f7423169 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-dist.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the LOGNORM.DIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-inv.htm index e06e01641..2ef01c958 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognorm-inv.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the LOGNORM.INV function,

                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognormdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognormdist.htm index 2c5609d8e..9f5f2c237 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lognormdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lognormdist.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the LOGNORMDIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lookup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lookup.htm index 0006093e6..89b1a1c15 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lookup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lookup.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the LOOKUP function,

                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/lower.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/lower.htm index f02190d1e..97a273165 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/lower.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/lower.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the LOWER function,

                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/match.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/match.htm index 1c5432455..5c8653f98 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/match.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/match.htm @@ -37,7 +37,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the MATCH function,

                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/max.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/max.htm index 5532801ce..d6f6689eb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/max.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/max.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the MAX function,

                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/maxa.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/maxa.htm index 2d53219c7..23037460e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/maxa.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/maxa.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the MAXA function,

                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/maxifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/maxifs.htm new file mode 100644 index 000000000..ccc3dcc7b --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/maxifs.htm @@ -0,0 +1,36 @@ + + + + MAXIFS Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            MAXIFS Function

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            The MAXIFS function is one of the statistical functions. It is used to return the maximum value among cells specified by a given set of conditions or criteria.

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            The MAXIFS function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            MAXIFS(max_range, criteria_range1, criteria1 [, criteria_range2, criteria2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            max_range is the range of cells in which the maximum will be determined.

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            criteria_range1 is the first selected range of cells to apply the criteria1 to.

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            criteria1 is the first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the max_range will be evaluated as maximum. It can be a value entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            criteria_range2, criteria2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional.

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            Note: you can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the MAXIFS function,

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                            5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                            7. click the MAXIFS function,
                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                            9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                            11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            MAXIFS Function

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mdeterm.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mdeterm.htm index a91e1169e..353d53177 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mdeterm.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mdeterm.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the MDETERM function,

                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mduration.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mduration.htm index f22a82156..e956a4df3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mduration.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mduration.htm @@ -51,7 +51,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                              2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                              3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/median.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/median.htm index a2cf140e8..c8b92fdc4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/median.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/median.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the MEDIAN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mid.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mid.htm index a5c164df7..f375905e0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mid.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mid.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the MID/MIDB function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/min.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/min.htm index f4ec0e8f2..0b1daadb7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/min.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/min.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the MIN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mina.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mina.htm index f19d2f84f..a9508c16e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mina.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mina.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the MINA function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/minifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/minifs.htm new file mode 100644 index 000000000..886dd47c0 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/minifs.htm @@ -0,0 +1,36 @@ + + + + MINIFS Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        MINIFS Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        The MINIFS function is one of the statistical functions. It is used to return the minimum value among cells specified by a given set of conditions or criteria.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        The MINIFS function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        MINIFS(min_range, criteria_range1, criteria1 [, criteria_range2, criteria2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        min_range is the range of cells in which the minimum will be determined.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        criteria_range1 is the first selected range of cells to apply the criteria1 to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        criteria1 is the first condition that must be met. It is applied to the criteria_range1 and used to determine which cells in the min_range will be evaluated as minimum. It can be a value entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        criteria_range2, criteria2, ... are additional ranges of cells and their corresponding criteria. These arguments are optional.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Note: you can use wildcard characters when specifying criteria. The question mark "?" can replace any single character and the asterisk "*" can be used instead of any number of characters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the MINIFS function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        7. click the MINIFS function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                        12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        MINIFS Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/minute.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/minute.htm index 1feb45a95..13bf4521c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/minute.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/minute.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the MINUTE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/minverse.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/minverse.htm index 338ea9057..c0d5813d8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/minverse.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/minverse.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the MINVERSE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mirr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mirr.htm index 8fea7d6b7..6c7fe158f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mirr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mirr.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the MIRR function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mmult.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mmult.htm index 9de4376ce..22f6b7103 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mmult.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mmult.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the MMULT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mod.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mod.htm index 60935a077..6d9f44f39 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mod.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mod.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the MOD function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-mult.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-mult.htm new file mode 100644 index 000000000..6591cab1f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-mult.htm @@ -0,0 +1,33 @@ + + + + MODE.MULT Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MODE.MULT Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The MODE.MULT function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive value in an array or range of data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The MODE.MULT function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MODE.MULT(number1, [, number2],...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where number1, number2... is up to 255 numeric values entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Note: if there is no repetitive value in the argument list, the function will return the #VALUE! error.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the MODE.MULT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. click the MODE.MULT function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MODE.MULT Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-sngl.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-sngl.htm new file mode 100644 index 000000000..ba44465c8 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode-sngl.htm @@ -0,0 +1,33 @@ + + + + MODE.SNGL Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MODE.SNGL Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The MODE.SNGL function is one of the statistical functions. It is used to return the most frequently occurring, or repetitive, value in an array or range of data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The MODE.SNGL function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MODE.SNGL(number1, [, number2],...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where number1, number2... is up to 255 numeric values entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Note: if there is no repetitive value in the argument list, the function will return the #VALUE! error.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the MODE.SNGL function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. click the MODE.SNGL function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MODE.SNGL Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode.htm index 09ed399b1..97138408b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mode.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mode.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the MODE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/month.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/month.htm index 9f9d6d0d2..8e5c00901 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/month.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/month.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the MONTH function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/mround.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/mround.htm index e864db4fc..3fe377ac5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/mround.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/mround.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the MROUND function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/multinomial.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/multinomial.htm index c2512b9b7..ef63b3118 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/multinomial.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/multinomial.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the MULTINOMIAL function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/n.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/n.htm index a17c5f0f2..6966a58f9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/n.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/n.htm @@ -46,7 +46,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the N function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/na.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/na.htm index 8f02e62b2..1d85918dd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/na.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/na.htm @@ -15,7 +15,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the NA function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinom-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinom-dist.htm new file mode 100644 index 000000000..8fcbd5106 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinom-dist.htm @@ -0,0 +1,37 @@ + + + + NEGBINOM.DIST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEGBINOM.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The NEGBINOM.DIST function is one of the statistical functions. It is used to return the negative binomial distribution, the probability that there will be Number_f failures before the Number_s-th success, with Probability_s probability of a success.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The NEGBINOM.DIST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEGBINOM.DIST(number-f, number-s, probability-s, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              number-f is the number of failures, a numeric value greater than or equal to 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              number-s is the the threshold number of successes, a numeric value greater than or equal to 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              probability-s is the success propability of each trial, a numeric value greater than 0, but less than 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The numeric values can be entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the NEGBINOM.DIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              7. click the NEGBINOM.DIST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NEGBINOM.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinomdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinomdist.htm index 18d4c7d16..747715110 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinomdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/negbinomdist.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the NEGBINOMDIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays-intl.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays-intl.htm new file mode 100644 index 000000000..720799547 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays-intl.htm @@ -0,0 +1,100 @@ + + + + NETWORKDAYS.INTL Function + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NETWORKDAYS.INTL Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The NETWORKDAYS.INTL function is one of the date and time functions. It is used to return the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The NETWORKDAYS.INTL function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NETWORKDAYS.INTL(start_date, end_date, [, weekend], [, holidays])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                start_date is the first date of the period, entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                end_date is the last date of the period, entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                weekend is an optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NumberWeekend days
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1 or omittedSaturday, Sunday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2Sunday, Monday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3Monday, Tuesday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4Tuesday, Wednesday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5Wednesday, Thursday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                6Thursday, Friday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                7Friday, Saturday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                11Sunday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                12Monday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                13Tuesday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                14Wednesday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                15Thursday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                16Friday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                17Saturday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. "0000011" specifies that weekend days are Saturday and Sunday. The string "1111111" is not valid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                holidays is an optional argument that specifies which dates in addition to weekend are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the NETWORKDAYS.INTL function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. select the Date and time function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                7. click the NETWORKDAYS.INTL function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NETWORKDAYS.INTL Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays.htm index fcff52112..ddafce7e2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays.htm @@ -14,13 +14,13 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The NETWORKDAYS function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                NETWORKDAYS(start-date, end-date [,holidays])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                start-date is a number representing the first date of the period, entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                end-date is a number representing the last date of the period, entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                holidays are optional arguments entered manually as a list of serial numbers or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                start-date is the first date of the period, entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                end-date is the last date of the period, entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                holidays is an optional argument that specifies which dates besides weekends are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the NETWORKDAYS function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/nominal.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/nominal.htm index 3d3ef89bc..d6c75a573 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/nominal.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/nominal.htm @@ -20,7 +20,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-dist.htm new file mode 100644 index 000000000..30590b76f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-dist.htm @@ -0,0 +1,37 @@ + + + + NORM.DIST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The NORM.DIST function is one of the statistical functions. It is used to return the normal distribution for the specified mean and standard deviation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The NORM.DIST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.DIST(x, mean, standard-dev, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    x is the value you want to calculate the distribution for, any numeric value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    mean is the arithmetic mean of the distribution, any numeric value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    standard-dev is the standard deviation of the distribution, a numeric value greater than 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    cumulative is the form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative distribution function; if FALSE, it will return the probability mass function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The values can be entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the NORM.DIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7. click the NORM.DIST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-inv.htm new file mode 100644 index 000000000..8c1154cee --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-inv.htm @@ -0,0 +1,36 @@ + + + + NORM.INV Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.INV Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The NORM.INV function is one of the statistical functions. It is used to return the inverse of the normal cumulative distribution for the specified mean and standard deviation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The NORM.INV function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.INV(probability, mean, standard-dev)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    probability is the probability corresponding to the normal distribution, any numeric value greater than 0, but less than 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    mean is the arithmetic mean of the distribution, any numeric value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    standard-dev is the standard deviation of the distribution, a numeric value greater than 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The numeric values can be entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the NORM.INV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7. click the NORM.INV function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.INV Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-dist.htm new file mode 100644 index 000000000..e4509f71d --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-dist.htm @@ -0,0 +1,34 @@ + + + + NORM.S.DIST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.S.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The NORM.S.DIST function is one of the statistical functions. It is used to return the standard normal distribution (has a mean of zero and a standard deviation of one).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The NORM.S.DIST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.S.DIST(z, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    z is the value at which the function should be calculated, a numeric value entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability mass function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the NORM.S.DIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7. click the NORM.S.DIST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.S.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-inv.htm new file mode 100644 index 000000000..341f6257f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-inv.htm @@ -0,0 +1,32 @@ + + + + NORM.S.INV Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.S.INV Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The NORM.S.INV function is one of the statistical functions. It is used to return the inverse of the standard normal cumulative distribution; the distribution has a mean of zero and a standard deviation of one.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The NORM.S.INV function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.S.INV(probability)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    where probability is a numeric value greater than 0 but less than 1 entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the NORM.S.INV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7. click the NORM.S.INV function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9. enter the required argument,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    NORM.S.INV Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/normdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/normdist.htm index 5b2da2feb..a64aae347 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/normdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/normdist.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the NORMDIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/norminv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/norminv.htm index 53cec6203..f0693645a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/norminv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/norminv.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the NORMINV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/normsdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/normsdist.htm index 03021e092..8dec365c0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/normsdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/normsdist.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the NORMSDIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/normsinv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/normsinv.htm index 05b77e475..a5e10dfdf 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/normsinv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/normsinv.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the NORMSINV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/not.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/not.htm index 13ff629a4..e7f82562c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/not.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/not.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the NOT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/now.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/now.htm index 041009023..41b456b93 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/now.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/now.htm @@ -15,7 +15,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the NOW function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/nper.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/nper.htm index 3b6a46fbe..2bfbdd198 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/nper.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/nper.htm @@ -23,7 +23,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the NPER function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/npv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/npv.htm index 948b08d89..0fd5950c9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/npv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/npv.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the NPV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/numbervalue.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/numbervalue.htm index f987c84fa..c7bbf96d3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/numbervalue.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/numbervalue.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the NUMBERVALUE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2bin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2bin.htm index 72ca81c6d..f43e7f356 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2bin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2bin.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the OCT2BIN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2dec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2dec.htm index 5c144a7ba..c4ed92ded 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2dec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2dec.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the OCT2DEC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2hex.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2hex.htm index 8d50e0eae..7522b3942 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2hex.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oct2hex.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the OCT2HEX function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/odd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/odd.htm index fe152fde3..2d7cfd258 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/odd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/odd.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the ODD function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfprice.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfprice.htm index fc0c8a4b7..4c6b2f2d7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfprice.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfprice.htm @@ -54,7 +54,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfyield.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfyield.htm index daa2aa7e7..e90293de6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfyield.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddfyield.htm @@ -54,7 +54,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlprice.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlprice.htm index c156d66bb..56934e2d2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlprice.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlprice.htm @@ -53,7 +53,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlyield.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlyield.htm index 0aa78744c..218382280 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlyield.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/oddlyield.htm @@ -53,7 +53,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/offset.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/offset.htm index 72e4a5d20..b15964eb1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/offset.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/offset.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the OFFSET function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/or.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/or.htm index 6dee01a1a..2e10694c4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/or.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/or.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the OR function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pearson.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pearson.htm index 79f945c9a..c165a810e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pearson.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pearson.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the PEARSON function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-exc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-exc.htm index 018fb477f..0c4c076ef 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-exc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-exc.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the PERCENTILE.EXC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-inc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-inc.htm index fe6b1e49d..791b25412 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-inc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile-inc.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the PERCENTILE.INC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile.htm index 0ba9aac33..8693710d2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentile.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the PERCENTILE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-exc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-exc.htm index abeed7492..57447786a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-exc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-exc.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the PERCENTRANK.EXC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-inc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-inc.htm index c47c301da..890eb8bcf 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-inc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank-inc.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the PERCENTRANK.INC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank.htm index 2dcc3ea96..6cbcf9494 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/percentrank.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the PERCENTRANK function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/permut.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/permut.htm index e05aae2cc..582f1103c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/permut.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/permut.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the PERMUT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/permutationa.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/permutationa.htm new file mode 100644 index 000000000..d59f4fb12 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/permutationa.htm @@ -0,0 +1,35 @@ + + + + PERMUTATIONA Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PERMUTATIONA Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The PERMUTATIONA function is one of the statistical functions. It is used to return the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The PERMUTATIONA function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PERMUTATIONA(number, number-chosen)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number is a number of items in the set, a numeric value greater than or equal to 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number-chosen is a number of items in one permutation, a numeric value greater than or equal to 0 and less than number.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The numeric values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the PERMUTATIONA function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. click the PERMUTATIONA function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PERMUTATIONA Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/phi.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/phi.htm new file mode 100644 index 000000000..18c74e2fd --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/phi.htm @@ -0,0 +1,34 @@ + + + + PHI Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PHI Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The PHI function is one of the statistical functions. It is used to return the value of the density function for a standard normal distribution.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The PHI function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PHI(x)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          x is the value you want to calculate the density function for, any numeric value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The numeric values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the PHI function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. click the PHI function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. enter the required argument,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PHI Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pi.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pi.htm index dd57628c8..feef770d9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pi.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pi.htm @@ -15,7 +15,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the PI function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pmt.htm index 3ddcc95a5..fd7cd8f22 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pmt.htm @@ -23,7 +23,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the PMT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson-dist.htm new file mode 100644 index 000000000..81178c3bf --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson-dist.htm @@ -0,0 +1,36 @@ + + + + POISSON.DIST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              POISSON.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The POISSON.DIST function is one of the statistical functions. It is used to return the Poisson distribution; a common application of the Poisson distribution is predicting the number of events over a specific time, such as the number of cars arriving at a toll plaza in 1 minute.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The POISSON.DIST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              POISSON.DIST(x, mean, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              x is the number of events, a numeric value greater than 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              mean is the expected numeric value greater than 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              cumulative is the form of the function, a logical value: TRUE or FALSE. If cumulative is TRUE, the function will return the cumulative Poisson probability; if FALSE, it will return the Poisson probability mass function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the POISSON.DIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              7. click the POISSON.DIST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              POISSON.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson.htm index 68527bf4d..8875896a4 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/poisson.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the POISSON function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/power.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/power.htm index 94494d0d6..145aa6cc2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/power.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/power.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the POWER function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ppmt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ppmt.htm index 0bc056b60..bdf529219 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/ppmt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ppmt.htm @@ -24,7 +24,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the PPMT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/price.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/price.htm index c3e4a28a4..cbfb2efda 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/price.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/price.htm @@ -51,7 +51,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the PRICE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pricedisc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pricedisc.htm index d0e5b0340..c0fcd82c7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pricedisc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pricedisc.htm @@ -50,7 +50,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pricemat.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pricemat.htm index 75c796dd5..b45f373d3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pricemat.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pricemat.htm @@ -51,7 +51,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/prob.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/prob.htm index ea501d7ba..c1ff3b96e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/prob.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/prob.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the PROB function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/product.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/product.htm index af8eb864a..01320ae63 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/product.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/product.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the PRODUCT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/proper.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/proper.htm index c3929b001..710a72d51 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/proper.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/proper.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the PROPER function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/pv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/pv.htm index 64bfe67e7..4b2254353 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/pv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/pv.htm @@ -23,7 +23,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the PV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-exc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-exc.htm new file mode 100644 index 000000000..275a40b0e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-exc.htm @@ -0,0 +1,52 @@ + + + + QUARTILE.EXC Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  QUARTILE.EXC Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The QUARTILE.EXC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, exclusive.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The QUARTILE.EXC function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  QUARTILE.EXC(array, quart)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array is the selected range of cells you want to analyse,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  quart is the quartile value that you wish to return, a numeric value entered manually or included into the cell you make reference to. The quartile value can be one of the following:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Numeric valueQuartile
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1First quartile (25th percentile)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2Second quartile (50th percentile)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3Third quartile (75th percentile)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the QUARTILE.EXC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. click the QUARTILE.EXC function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  QUARTILE.EXC Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-inc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-inc.htm new file mode 100644 index 000000000..4aa3c6a4b --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-inc.htm @@ -0,0 +1,61 @@ + + + + QUARTILE.INC Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  QUARTILE.INC Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The QUARTILE.INC function is one of the statistical functions. It is used to return the quartile of the data set, based on percentile values from 0..1, inclusive.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The QUARTILE.INC function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  QUARTILE.INC(array, quart)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array is the selected range of cells you want to analyse,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  quart is the quartile value that you wish to return, a numeric value entered manually or included into the cell you make reference to. The quartile value can be one of the following:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Numeric valueQuartile
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  0Smallest value in the range of data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1First quartile (25th percentile)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2Second quartile (50th percentile)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3Third quartile (75th percentile)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4Largest value in the data set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the QUARTILE.INC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. click the QUARTILE.INC function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  QUARTILE.INC Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile.htm index 97fc3d016..271559844 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/quartile.htm @@ -45,7 +45,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the QUARTILE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/quotient.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/quotient.htm index 71980c710..6dfe48d7e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/quotient.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/quotient.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the QUOTIENT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/radians.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/radians.htm index 2892a2a29..269511f89 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/radians.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/radians.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the RADIANS function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rand.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rand.htm index 43dede553..bdd62cf96 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rand.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rand.htm @@ -15,7 +15,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the RAND function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/randbetween.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/randbetween.htm index 6b972f902..e0e11e593 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/randbetween.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/randbetween.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the RANDBETWEEN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-avg.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-avg.htm index a2f9bfeca..80be7faf9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-avg.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-avg.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the RANK.AVG function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-eq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-eq.htm index e4d834460..b21b02d23 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-eq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank-eq.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the RANK.EQ function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank.htm index 6f41d54d6..5dad6fc41 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rank.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rank.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the RANK function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rate.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rate.htm index a0ad24978..73b0965fd 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rate.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rate.htm @@ -24,7 +24,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the RATE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/received.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/received.htm index 995ead300..a4cbd7e91 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/received.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/received.htm @@ -49,7 +49,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the RECEIVED function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/replace.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/replace.htm index b384b706c..174a0e191 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/replace.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/replace.htm @@ -22,7 +22,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the REPLACE/REPLACEB function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rept.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rept.htm index 4d83620a8..463f50765 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rept.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rept.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the REPT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/right.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/right.htm index 6d5cecf85..8a6e833f1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/right.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/right.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the RIGHT/RIGHTB function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/roman.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/roman.htm index 3d215a51b..9bad62ab9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/roman.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/roman.htm @@ -52,7 +52,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the ROMAN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/round.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/round.htm index 889e66b1d..bb07cb1eb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/round.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/round.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the ROUND function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rounddown.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rounddown.htm index 36a0069ac..a4aabead3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rounddown.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rounddown.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the ROUNDDOWN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/roundup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/roundup.htm index d0b04eddf..f95097810 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/roundup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/roundup.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the ROUNDUP function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/row.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/row.htm index 7b2a8de0a..4ca4ba274 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/row.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/row.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the ROW function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rows.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rows.htm index 74718dfaa..570e431b2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rows.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rows.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the ROWS function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rri.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rri.htm new file mode 100644 index 000000000..9b7a6cc60 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rri.htm @@ -0,0 +1,36 @@ + + + + RRI Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RRI Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The RRI function is one of the financial functions. It is used to return an equivalent interest rate for the growth of an investment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The RRI function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RRI(nper, pv, fv)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nper is a number of periods for the investment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        pv is a present value of the investment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        fv is a future value of the investment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The numeric values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the RRI function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. select the Financial function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        7. click the RRI function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RRI Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/rsq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/rsq.htm index 95e7005fe..281422a72 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/rsq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/rsq.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the RSQ function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/search.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/search.htm index 21901633e..741612002 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/search.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/search.htm @@ -22,7 +22,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the SEARCH/SEARCHB function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sec.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sec.htm index 3de25a57e..1b5d13af5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sec.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sec.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the SEC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sech.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sech.htm index a5ad5de7b..4b4582413 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sech.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sech.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the SECH function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/second.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/second.htm index 64cb70546..a5b4e4c39 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/second.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/second.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the SECOND function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/seriessum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/seriessum.htm index 85e635cbd..6de226b63 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/seriessum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/seriessum.htm @@ -23,7 +23,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the SERIESSUM function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sheet.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sheet.htm new file mode 100644 index 000000000..d7fe065e1 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sheet.htm @@ -0,0 +1,32 @@ + + + + SHEET Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SHEET Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The SHEET function is one of the information functions. It is used to return the sheet number of the reference sheet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The SHEET function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SHEET(value)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    where value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, the current sheet number is returned.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the SHEET function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. select the Information function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7. click the SHEET function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9. enter the required argument,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SHEET Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sheets.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sheets.htm new file mode 100644 index 000000000..20fad61ea --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sheets.htm @@ -0,0 +1,32 @@ + + + + SHEETS Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SHEETS Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The SHEETS function is one of the information functions. It is used to return the number of sheets in a reference.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The SHEETS function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SHEETS(reference)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    where reference is a reference for which you want to find out the number of sheets it contains. If reference is omitted, the number of sheets in the current workbook is returned.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the SHEETS function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. select the Information function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7. click the SHEETS function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9. enter the required argument,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SHEETS Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sign.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sign.htm index f13eebe3a..40697b37b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sign.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sign.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the SIGN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sin.htm index 6c291b3c0..f1472388f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sin.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sin.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the SIN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sinh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sinh.htm index 5691de172..e03b79a68 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sinh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sinh.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the SINH function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/skew-p.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/skew-p.htm new file mode 100644 index 000000000..df14c4c54 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/skew-p.htm @@ -0,0 +1,33 @@ + + + + SKEW.P Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SKEW.P Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The SKEW.P function is one of the statistical functions. It is used to return the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The SKEW.P function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SKEW.P(number-1 [, number 2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          where number-1(2) is up to 254 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the SKEW.P function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. click the SKEW.P function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SKEW.P Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/skew.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/skew.htm index a65d6b6cb..8c3bd741d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/skew.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/skew.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the SKEW function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sln.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sln.htm index 143a7b5ee..32fad82a6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sln.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sln.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the SLN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/slope.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/slope.htm index 4b7fdefcb..c21671f44 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/slope.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/slope.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the SLOPE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/small.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/small.htm index 175cf28bd..9f75e252a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/small.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/small.htm @@ -18,7 +18,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the SMALL function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrt.htm index 731a4db89..eb571a1e7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrt.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the SQRT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrtpi.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrtpi.htm index 01f85c17f..f55ec0fe3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrtpi.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sqrtpi.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the SQRTPI function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/standardize.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/standardize.htm index 30297f6a3..057ee3d57 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/standardize.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/standardize.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the STANDARDIZE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-p.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-p.htm new file mode 100644 index 000000000..42633361d --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-p.htm @@ -0,0 +1,33 @@ + + + + STDEV.P Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        STDEV.P Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The STDEV.P function is one of the statistical functions. It is used to calculate standard deviation based on the entire population given as arguments (ignores logical values and text).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The STDEV.P function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        STDEV.P(number1 [, number2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        where number-1(2) is up to 254 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the STDEV.P function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        7. click the STDEV.P function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        STDEV.P Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-s.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-s.htm new file mode 100644 index 000000000..31d8f3320 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-s.htm @@ -0,0 +1,33 @@ + + + + STDEV.S Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        STDEV.S Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The STDEV.S function is one of the statistical functions. It is used to estimate standard deviation based on a sample (ignores logical values and text in the sample).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The STDEV.S function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        STDEV.S(number1 [, number2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        where number-1(2) is up to 255 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the STDEV.S function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        7. click the STDEV.S function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        STDEV.S Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev.htm index d7b47cc82..de99bfffa 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdev.htm @@ -12,11 +12,12 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The STDEV function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of a population based on a set of numbers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The STDEV function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        STDEV(argument-list)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Note: if a reference argument contains text, logical values, or empty cells, the function will ignore those values, but treat the cells with the zero values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the STDEV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdeva.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdeva.htm index 08ce00383..4df1441ec 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdeva.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdeva.htm @@ -12,11 +12,11 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The STDEVA function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of a population based on a set of numbers, text, and logical values (TRUE or FALSE). The STDEVA function treats text and FALSE as a value of 0 and TRUE as a value of 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The STDEVA function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          STDEVA(argument-list)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          where argument-list is up to 30 values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          where argument-list is up to 255 values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the STDEVA function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevp.htm index 846774479..77db3c8d9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevp.htm @@ -12,11 +12,11 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The STDEVP function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The STDEVP function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            STDEVP(argument-list)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the STDEVP function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevpa.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevpa.htm index 07fe44ea1..91910e740 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevpa.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/stdevpa.htm @@ -12,12 +12,12 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The STDEVPA function is one of the statistical functions. It is used to analyze the range of data and return the standard deviation of an entire population.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The STDEVPA function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              STDEVPA(argument-list)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              where argument-list is up to 30 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              where argument-list is up to 255 numeric values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note: text and FALSE values are counted as 0, TRUE values are counted as 1, empty cells are ignored.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the STDEVPA function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/steyx.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/steyx.htm index 6adb3955c..9130b05e7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/steyx.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/steyx.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the STEYX function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/substitute.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/substitute.htm index 96b5477f9..a3e0dd9bb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/substitute.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/substitute.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the SUBSTITUTE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/subtotal.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/subtotal.htm index 2526b9a83..79f5383ef 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/subtotal.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/subtotal.htm @@ -80,7 +80,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the SUBTOTAL function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sum.htm index c56382d44..516df93d6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sum.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the SUM function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, or click the Function icon icon situated at the formula bar and select the SUM function of the Math and trigonometry function group,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. enter the required arguments separating them by commas or select the range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumif.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumif.htm index 7d5fd5979..547e74c49 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumif.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumif.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the SUMIF function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumifs.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumifs.htm index 07d0aafd2..2d80b8407 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumifs.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumifs.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the SUMIFS function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumproduct.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumproduct.htm index c1216f3ce..366e70a32 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumproduct.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumproduct.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the SUMPRODUCT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumsq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumsq.htm index a2bffb733..ef35827f5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumsq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumsq.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the SUMSQ function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2my2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2my2.htm index a14e050ab..5147b9ab5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2my2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2my2.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the SUMX2MY2 function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2py2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2py2.htm index cac436600..259f1a92b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2py2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumx2py2.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the SUMX2PY2 function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumxmy2.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumxmy2.htm index d535ef810..cc4dc0bae 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/sumxmy2.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/sumxmy2.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the SUMXMY2 function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/switch.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/switch.htm new file mode 100644 index 000000000..a083d7f43 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/switch.htm @@ -0,0 +1,38 @@ + + + + SWITCH Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SWITCH Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The SWITCH function is one of the logical functions. It is used to evaluate one value (called the expression) against a list of values, and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The SWITCH function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SWITCH(expression, value1, result1 [, [default or value2] [, [result2]], ...[default or value3, result3]])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expression is the value that will be compared against value1 ...value126.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      value1 ...value126 is the value that will be compared against expression.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      result1 ...result126 is the result to be returned if the value1 ...value126 matches to the expression.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      default is the result to be returned if there are no matches. If the default argument is not specified and there are no matches, the function returns the #N/A error.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: you can enter up to 254 arguments i.e. up to 126 pairs of values and results.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the SWITCH function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. select the Logical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7. click the SWITCH function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9. enter the required arguments separating them by commas, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SWITCH Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/syd.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/syd.htm index aab7f25b5..ae9bfc5ed 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/syd.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/syd.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the SYD function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-2t.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-2t.htm index 5cb6feca8..eff030549 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-2t.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-2t.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the T.DIST.2T function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-rt.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-rt.htm index 8180dcbb7..098558432 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-rt.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist-rt.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the T.DIST.RT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist.htm index 2d53f8c7c..cbde22501 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-dist.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the T.DIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv-2t.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv-2t.htm index 07555e369..ed8733b95 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv-2t.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv-2t.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the T.INV.2T function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv.htm index bed0ef06f..d1ed33540 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-inv.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the T.INV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t-test.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-test.htm new file mode 100644 index 000000000..4fcf1113c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t-test.htm @@ -0,0 +1,55 @@ + + + + T.TEST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  T.TEST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The T.TEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use T.TEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The T.TEST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  T.TEST(array1, array2, tails, type)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array1 is the first range of numeric values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array2 is the second range of numeric values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tails is the number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type is a numeric value that specifies the kind of t-Test to be performed. The value can be one of the following:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Numeric valueThe kind of t-Test
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1Paired
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2Two-sample equal variance (homoscedastic)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3Two-sample unequal variance (heteroscedastic)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the T.TEST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. click the T.TEST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. enter the required arguments separating by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  T.TEST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/t.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/t.htm index f3416fda1..6d9fa1321 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/t.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/t.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the T function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tan.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tan.htm index c36b3c14d..e61866c10 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tan.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tan.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the TAN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tanh.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tanh.htm index 01cbdaafc..fad54b0d0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tanh.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tanh.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the TANH function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbilleq.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbilleq.htm index cc83329e5..8f0586a3c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbilleq.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbilleq.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the TBILLEQ function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillprice.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillprice.htm index 06bbed4fc..29ea6f147 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillprice.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillprice.htm @@ -22,7 +22,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillyield.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillyield.htm index 795b48485..db5272aea 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillyield.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tbillyield.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the TBILLYIELD function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tdist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tdist.htm index 6b0717a2f..915f8960f 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tdist.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tdist.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the TDIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/text.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/text.htm index 822c45a6b..91d725cf7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/text.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/text.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the TEXT function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/textjoin.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/textjoin.htm new file mode 100644 index 000000000..df91f1298 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/textjoin.htm @@ -0,0 +1,35 @@ + + + + TEXTJOIN Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TEXTJOIN Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The TEXTJOIN function is one of the text and data functions. Is used to combine the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined; if the delimiter is an empty text string, this function will effectively concatenate the ranges. This function is similar to the CONCAT function, but the difference is that the CONCAT function cannot accept a delimiter.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The TEXTJOIN function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TEXTJOIN(delimiter, ignore_empty, text1 [, text2], …)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  delimiter is the delimiter to be inserted between the text values. Can be specified as a text string enclosed by double quotes (e.g. "," (comma), " " (space), "\" (backslash) etc.) or as a reference to a cell or range of cells.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ignore_empty is a logical value that specifies whether empty cells should be ignored. When the value is set to TRUE, empty cells are ignored.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  text1(2) is up to 252 data values. Each value can be a text string or a reference to a range of cells.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the TEXTJOIN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. select the Text and data function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. click the TEXTJOIN function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TEXTJOIN Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/time.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/time.htm index 60b4db24d..9f167981a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/time.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/time.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the TIME function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/timevalue.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/timevalue.htm index 518e71152..1fe63fa2b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/timevalue.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/timevalue.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the TIMEVALUE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/tinv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/tinv.htm index 72a0af3aa..bff3560d9 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/tinv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/tinv.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the TINV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/today.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/today.htm index 173aa1ff3..9694e8a09 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/today.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/today.htm @@ -15,7 +15,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the TODAY function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/transpose.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/transpose.htm index 8ab302cad..dbd87c891 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/transpose.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/transpose.htm @@ -19,7 +19,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6. select a cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        7. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        8. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        9. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        10. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/trim.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/trim.htm index ac7fa5520..77e59428d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/trim.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/trim.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the TRIM function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/trimmean.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/trimmean.htm new file mode 100644 index 000000000..7aeb338e1 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/trimmean.htm @@ -0,0 +1,35 @@ + + + + TRIMMEAN Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TRIMMEAN Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The TRIMMEAN function is one of the statistical functions. It is used to return the mean of the interior of a data set. TRIMMEAN calculates the mean taken by excluding a percentage of data points from the top and bottom tails of a data set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The TRIMMEAN function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TRIMMEAN(array, percent)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            array is the range of numeric values to trim and average.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            percent is a total percent of data points to exclude from the calculation. A numeric value greater than or equal to 0 but less than 1. The number of excluded data points is rounded down to the nearest multiple of 2. E.g., if array contains 30 values and percent is 0.1, 10 percent of 30 points is 3. This value is rounded down to 2, so 1 point is trimmed from each tail of the data set: 1 from the top and 1 from the bottom of the set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the TRIMMEAN function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. click the TRIMMEAN function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. enter the required arguments separating by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TRIMMEAN Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/true.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/true.htm index e2d75c0c3..cb789085d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/true.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/true.htm @@ -15,7 +15,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the TRUE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/trunc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/trunc.htm index 00c36cc5d..b8a32c8e6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/trunc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/trunc.htm @@ -19,7 +19,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the TRUNC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ttest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ttest.htm new file mode 100644 index 000000000..2038f8768 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ttest.htm @@ -0,0 +1,55 @@ + + + + TTEST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TTEST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The TTEST function is one of the statistical functions. It is used to return the probability associated with a Student's t-Test. Use TTEST to determine whether two samples are likely to have come from the same two underlying populations that have the same mean.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The TTEST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TTEST(array1, array2, tails, type)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                array1 is the first range of numeric values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                array2 is the second range of numeric values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tails is the number of distribution tails. If it is 1, the function uses the one-tailed distribution. If it is 2, the function uses the two-tailed distribution.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type is a numeric value that specifies the kind of t-Test to be performed. The value can be one of the following:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Numeric valueThe kind of t-Test
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1Paired
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2Two-sample equal variance (homoscedastic)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3Two-sample unequal variance (heteroscedastic)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the TTEST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                7. click the TTEST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                9. enter the required arguments separating by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TTEST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/type.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/type.htm index 76fc3d40a..621488f39 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/type.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/type.htm @@ -42,7 +42,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the TYPE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/unichar.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/unichar.htm new file mode 100644 index 000000000..6454c9e9f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/unichar.htm @@ -0,0 +1,33 @@ + + + + UNICHAR Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNICHAR Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The UNICHAR function is one of the text and data functions. Is used to return the Unicode character that is referenced by the given numeric value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The UNICHAR function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNICHAR(number)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where number is the Unicode number that represents the character. It can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the UNICHAR function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. select the Text and data function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. click the UNICHAR function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. enter the required argument, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNICHAR Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/unicode.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/unicode.htm new file mode 100644 index 000000000..89de76762 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/unicode.htm @@ -0,0 +1,33 @@ + + + + UNICODE Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNICODE Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The UNICODE function is one of the text and data functions. Is used to return the number (code point) corresponding to the first character of the text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The UNICODE function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNICODE(text)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where text is the text string beginning with the character you want to get the Unicode value for. It can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the UNICODE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. select the Text and data function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. click the UNICODE function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. enter the required argument, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNICODE Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/upper.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/upper.htm index b18ca8e61..0e82d57e5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/upper.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/upper.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To apply the UPPER function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/value.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/value.htm index 4b6cab649..29583d873 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/value.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/value.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the VALUE function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/var-p.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/var-p.htm new file mode 100644 index 000000000..cb83e2ef2 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/var-p.htm @@ -0,0 +1,33 @@ + + + + VAR.P Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VAR.P Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The VAR.P function is one of the statistical functions. It is used to calculate variance based on the entire population (ignores logical values and text in the population).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The VAR.P function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VAR.P(number1 [, number2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      where number1(2) is up to 254 numerical values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the VAR.P function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7. click the VAR.P function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VAR.P Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/var-s.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/var-s.htm new file mode 100644 index 000000000..b11f1f4e4 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/var-s.htm @@ -0,0 +1,33 @@ + + + + VAR.S Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VAR.S Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The VAR.S function is one of the statistical functions. It is used to estimate variance based on a sample (ignores logical values and text in the sample).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The VAR.S function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VAR.S(number1 [, number2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      where number1(2) is up to 254 numerical values entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: empty cells, logical values, text, or error values supplied as part of an array are ignored. If they are supplied directly to the function, text representations of numbers and logical values are interpreted as numbers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the VAR.S function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7. click the VAR.S function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9. enter the required arguments separating them by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VAR.S Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/var.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/var.htm index 873a6610c..5ca789dc0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/var.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/var.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the VAR function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/vara.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/vara.htm index d2161de01..ba2861f05 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/vara.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/vara.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the VARA function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/varp.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/varp.htm index bba335101..5add0cdc5 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/varp.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/varp.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the VARP function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/varpa.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/varpa.htm index 4086c57cf..c95aea504 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/varpa.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/varpa.htm @@ -17,7 +17,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the VARPA function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/vdb.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/vdb.htm index 0a3d2c793..bad5767cf 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/vdb.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/vdb.htm @@ -26,7 +26,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/vlookup.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/vlookup.htm index 14ca24411..bce16298e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/vlookup.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/vlookup.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the VLOOKUP function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/weekday.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/weekday.htm index 6f68d8735..858f7a390 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/weekday.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/weekday.htm @@ -36,7 +36,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/weeknum.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/weeknum.htm index 72b1327ed..e799260d3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/weeknum.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/weeknum.htm @@ -33,7 +33,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To apply the WEEKNUM function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull-dist.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull-dist.htm new file mode 100644 index 000000000..62c204ca4 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull-dist.htm @@ -0,0 +1,37 @@ + + + + WEIBULL.DIST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WEIBULL.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The WEIBULL.DIST function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The WEIBULL.DIST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WEIBULL(x, alpha, beta, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      x is the value between at which the function should be calculated, a numeric value greater than or equal to 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      alpha is the first parameter of the distribution, a numeric value greater than 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      beta is the second parameter of the distribution, a numeric value greater than 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The values can be entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the WEIBULL.DIST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7. click the WEIBULL.DIST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WEIBULL.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull.htm new file mode 100644 index 000000000..9441e4c4b --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/weibull.htm @@ -0,0 +1,37 @@ + + + + WEIBULL Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WEIBULL Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The WEIBULL function is one of the statistical functions. It is used to return the Weibull distribution. Use this distribution in reliability analysis, such as calculating a device's mean time to failure.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The WEIBULL function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WEIBULL(x, alpha, beta, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      x is the value between at which the function should be calculated, a numeric value greater than or equal to 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      alpha is the first parameter of the distribution, a numeric value greater than 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      beta is the second parameter of the distribution, a numeric value greater than 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cumulative is a logical value (TRUE or FALSE) that determines the function form. If it is TRUE, the function returns the cumulative distribution function. If it is FALSE, the function returns the probability density function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The values can be entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the WEIBULL function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7. click the WEIBULL function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WEIBULL Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/workday-intl.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/workday-intl.htm new file mode 100644 index 000000000..d81300760 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/workday-intl.htm @@ -0,0 +1,100 @@ + + + + WORKDAY.INTL Function + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WORKDAY.INTL Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The WORKDAY.INTL function is one of the date and time functions. It is used to return the date before or after a specified number of workdays with custom weekend parameters; weekend parameters indicate which and how many days are weekend days.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The WORKDAY.INTL function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WORKDAY.INTL(start_date, days, [, weekend], [, holidays])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      start_date is the first date of the period entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      days is a number of workdays before or after start_date. If the days has the negative sign, the function will return the date which comes before the specified start_date. If the days has the positive sign, the function will return the date which follows after the specified start_date.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      weekend is an optional argument, a number or a string that specifies which days to consider weekends. The possible numbers are listed in the table below.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NumberWeekend days
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1 or omittedSaturday, Sunday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2Sunday, Monday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3Monday, Tuesday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4Tuesday, Wednesday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5Wednesday, Thursday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6Thursday, Friday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7Friday, Saturday
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11Sunday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      12Monday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      13Tuesday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      14Wednesday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      15Thursday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      16Friday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      17Saturday only
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A string that specifies weekend days must contain 7 characters. Each character represents a day of the week, starting from Monday. 0 represents a workday, 1 represents a weekend day. E.g. "0000011" specifies that weekend days are Saturday and Sunday. The string "1111111" is not valid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      holidays is an optional argument that specifies which dates in addition to weekend are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the WORKDAY.INTL function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. select the Date and time function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7. click the WORKDAY.INTL function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9. enter the required arguments separating them by commas,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WORKDAY.INTL Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/workday.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/workday.htm index 630264c0c..d36ed059d 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/workday.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/workday.htm @@ -14,14 +14,13 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The WORKDAY function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WORKDAY(start-day, day-offset [,holidays])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      start-day is a number representing the first date of the period entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      day-offset is a number of nonweekend before or after start-day. If the day-offset has the negative sign, the function will return the serial number of the date which comes before the specified start-date. If the day-offset has the positive sign, the function will return the serial number of the date which follows after the specified start-date.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      holidays are the nonworking days. It is an optional argument.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The values can be entered manually or included into the cells you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      start-day is the first date of the period entered using the Date function or other date and time function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      day-offset is a number of nonweekend before or after start-day. If the day-offset has the negative sign, the function will return the date which comes before the specified start-date. If the day-offset has the positive sign, the function will return the date which follows after the specified start-date.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      holidays is an optional argument that specifies which dates besides weekends are nonworking. You can enter them using the Date function or other date and time function or specify a reference to a range of cells containing dates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To apply the WORKDAY function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/xirr.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/xirr.htm index 0eb2e4163..6c42f1783 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/xirr.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/xirr.htm @@ -21,7 +21,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the XIRR function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/xnpv.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/xnpv.htm index 0f8d8c8d8..c3967efbf 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/xnpv.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/xnpv.htm @@ -20,7 +20,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To apply the XNPV function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/xor.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/xor.htm index 495901208..7b05ac4df 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/xor.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/xor.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To apply the XOR function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/year.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/year.htm index 909a31284..4068e1da8 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/year.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/year.htm @@ -16,7 +16,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the YEAR function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/yearfrac.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/yearfrac.htm index 77d4c64fc..60701a1f2 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/yearfrac.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/yearfrac.htm @@ -48,7 +48,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To apply the YEARFRAC function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Insert Function Insert Function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/yield.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/yield.htm index 2a2a07cc3..a0b0318d0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/yield.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/yield.htm @@ -52,7 +52,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/yielddisc.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/yielddisc.htm index e889e75ca..0a17aaa95 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/yielddisc.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/yielddisc.htm @@ -50,7 +50,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/yieldmat.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/yieldmat.htm index 8b72cd0ef..bc402a8e3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/Functions/yieldmat.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/yieldmat.htm @@ -51,7 +51,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. - click the Insert Function Insert Function icon icon situated at the top toolbar, + click the Insert function Insert function icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or right-click within a selected cell and select the Insert Function option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or click the Function icon icon situated at the formula bar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/z-test.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/z-test.htm new file mode 100644 index 000000000..163b747ff --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/z-test.htm @@ -0,0 +1,36 @@ + + + + Z.TEST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Z.TEST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Z.TEST function is one of the statistical functions. It is used to return the one-tailed P-value of a z-test. For a given hypothesized population mean, x, Z.TEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Z.TEST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Z.TEST(array, x [, sigma])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        array is the range of numeric values against which to test x.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        x is the value to test.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sigma is a population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the Z.TEST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        7. click the Z.TEST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        9. enter the required arguments separating by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Z.TEST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/Functions/ztest.htm b/apps/spreadsheeteditor/main/resources/help/en/Functions/ztest.htm new file mode 100644 index 000000000..b2ef2ce0f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/en/Functions/ztest.htm @@ -0,0 +1,36 @@ + + + + ZTEST Function + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ZTEST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The ZTEST function is one of the statistical functions. It is used to return the one-tailed probability-value of a z-test. For a given hypothesized population mean, μ0, ZTEST returns the probability that the sample mean would be greater than the average of observations in the data set (array) — that is, the observed sample mean.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The ZTEST function syntax is:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ZTEST(array, x [, sigma])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        where

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        array is the range of numeric values against which to test x.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        x is the value to test.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sigma is a population standard deviation. This is an optional argument. If it is omitted, the sample standard deviation is used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The values can be entered manually or included into the cell you make reference to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To apply the ZTEST function,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. select the cell where you wish to display the result,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the Insert function Insert function icon icon situated at the top toolbar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or right-click within a selected cell and select the Insert Function option from the menu, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or click the Function icon icon situated at the formula bar, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. select the Statistical function group from the list,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        7. click the ZTEST function,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        9. enter the required arguments separating by commas or select a range of cells with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        11. press the Enter button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The result will be displayed in the selected cell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ZTEST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm index 2afb63a2f..59bcfa3ad 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm @@ -9,7 +9,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Advanced Settings of Spreadsheet Editor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Spreadsheet Editor lets you change its general 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.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Spreadsheet Editor lets you change its general 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 general advanced settings are:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • diff --git a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm index 8f12d2f96..bc4af1040 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm @@ -22,8 +22,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Co-editing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Spreadsheet 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 cells as well as the tab of the sheet where these cells are situated are marked with dashed lines of different colors. By hovering the mouse cursor over one of the edited cells, 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 right 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 either full or read-only access, 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 in the upper left corner 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.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          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.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -41,23 +41,23 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To leave a comment,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select a cell where you think there is an error or problem,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. switch to the Insert 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 within the selected cell and select the Add Сomment option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. enter the needed text,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. click the Add Comment/Add button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The comment will be seen on the panel on the left. The orange triangle will appear in the upper right corner of the cell you commented. 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 cells will be marked only if you click the Comments icon icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The comment will be seen on the panel on the left. The orange triangle will appear in the upper right corner of the cell you commented. 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 cells will be marked only if you click the Comments icon icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To view the comment, just click within the cell. You or any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, use the Add Reply link.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          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/spreadsheeteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm index af39507e3..aadba01c0 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm @@ -55,9 +55,9 @@ Print your spreadsheet with one of the available printers or save it to a file. - Download as + Download as... Ctrl+Shift+S - Open the Download as pane to save the currently viewed spreadsheet to the computer hard disk drive in one of the supported formats: XLSX, ODS, CSV, HTML. + Open the Download as... pane to save the currently viewed spreadsheet to the computer hard disk drive in one of the supported formats: XLSX, PDF, ODS, CSV. Full screen @@ -301,7 +301,7 @@ SUM function - Alt+'=' + Alt+equals (=) Insert the SUM function into the selected cell. diff --git a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/Navigation.htm b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/Navigation.htm index 391bcc4d3..bb389e627 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/Navigation.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/HelpfulHints/Navigation.htm @@ -11,17 +11,20 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        View Settings and Navigation Tools

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To help you view and select cells in a large spreadsheet Spreadsheet Editor offers several tools: adjustable bars, scrollbars, sheet navigation buttons, sheet tabs and zoom.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Adjust the View Settings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To adjust default view settings and set the most convenient mode to work with the spreadsheet, 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 spreadsheet, switch to the Home tab of the top toolbar, click the View settings View settings icon icon 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:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • 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 spreadsheet 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 Formula Bar - hides the bar situated below the top toolbar and used to enter and review the formula and its content. To show the hidden Formula Bar click this option once again.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Hide Headings - hides the column heading at the top and row heading at the left of the worksheet. To show the hidden Headings click this option once again.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Hide Gridlines - hides the lines that appear around the cells. To show the hidden Gridlines click this option once again.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Freeze Panes - freezes all the rows above the active cell and all the columns to the left of the active cell so that they remain visible when you scroll the spreadsheet to the right or down. To unfreeze the panes just click this option once again or right-click anywhere within the worksheet and select the Unfreeze Panes option from the menu.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

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

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You can also change the size of the opened Comments or Chat panel using the 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 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 spreadsheet, use the following tools:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @@ -34,15 +37,15 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You can also use the mouse scroll wheel to scroll your spreadsheet up or down.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Sheet Navigation buttons are situated in the left lower corner and are used to scroll the sheet list to the right/left and navigate among the sheet tabs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Scroll to First Sheet Scroll to First Sheet button button to scroll the sheet list to the first sheet tab of the current spreadsheet;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Scroll Sheet List Left Scroll Sheet List Left button to scroll the sheet list of the current spreadsheet to the left;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Scroll Sheet List Right Scroll Sheet List Right button to scroll the sheet list of the current spreadsheet to the right;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Scroll to Last Sheet Scroll to Last Sheet button to scroll the sheet list to the last sheet tab of the current spreadsheet.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Scroll to first sheet Scroll to first sheet button button to scroll the sheet list to the first sheet tab of the current spreadsheet;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Scroll sheet list left Scroll sheet list left button to scroll the sheet list of the current spreadsheet to the left;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Scroll sheet list right Scroll sheet list right button to scroll the sheet list of the current spreadsheet to the right;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Scroll to last sheet Scroll to last sheet button to scroll the sheet list to the last sheet tab of the current spreadsheet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To activate an appropriate sheet click its Sheet Tab at the bottom next to the Sheet Navigation buttons.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Zoom buttons are situated in the lower right corner and are used to zoom in and out the current sheet. 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. Zoom settings are also available in the View Settings View Settings icon drop-down list. + or use the Zoom in Zoom in button or Zoom out Zoom out button buttons. Zoom settings are also available in the View settings View settings icon drop-down list.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddBorders.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddBorders.htm index 674967e05..a031ada9a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddBorders.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddBorders.htm @@ -14,7 +14,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. select a cell, a range of cells with the mouse or the whole worksheet by pressing the Ctrl+A key combination,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Note: you can also select multiple non-adjacent cells or cell ranges holding down the Ctrl key while selecting cells/ranges with the mouse.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. click the Add Borders Add Borders icon icon situated at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      7. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      8. click the Borders Borders icon icon situated at the Home tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9. select the border style you wish to apply:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. open the Border Style submenu and select one of the available options,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm index b8efc97c5..491183e28 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm @@ -12,7 +12,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To add a hyperlink,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select a cell where a hyperlink will be added,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the Add Hyperlink Add Hyperlink icon icon at the top toolbar or select the same option from the right-click menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. switch to the Insert tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. click the Hyperlink icon Hyperlink icon at the top toolbar or select the same option from the right-click menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. after that the Hyperlink Settings will appear where you can specify the hyperlink settings:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Link Type - select a link type you wish to insert from the drop-down list: diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AlignText.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AlignText.htm index 30311d697..9fa166fd1 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AlignText.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/AlignText.htm @@ -9,21 +9,21 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Align data in cells

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You can align your data horizontally and vertically or even rotate data within a cell. To do that, select a cell, a range of cells with the mouse or the whole worksheet by pressing the Ctrl+A key combination. You can also select multiple non-adjacent cells or cell ranges holding down the Ctrl key while selecting cells/ranges with the mouse. Then perform one of the following operations using the icons situated at the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You can align your data horizontally and vertically or even rotate data within a cell. To do that, select a cell, a range of cells with the mouse or the whole worksheet by pressing the Ctrl+A key combination. You can also select multiple non-adjacent cells or cell ranges holding down the Ctrl key while selecting cells/ranges with the mouse. Then perform one of the following operations using the icons situated at the Home tab of the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Apply one of the horizontal alignment of the data within a cell,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align Left Align Left icon icon to align your data by the left side of the cell (the right side remains unaligned);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align Center Align Center icon icon to align your data by the center of the cell (the right and the left sides remains unaligned);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align Right Align Right icon icon to align your data by the right side of the cell (the left side remains unaligned);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align left Align left icon icon to align your data by the left side of the cell (the right side remains unaligned);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align center Align center icon icon to align your data by the center of the cell (the right and the left sides remains unaligned);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align right Align right icon icon to align your data by the right side of the cell (the left side remains unaligned);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Justified Justified icon icon to align your data by both the left and the right sides of the cell (additional spacing is added where necessary to keep the alignment).
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Change the vertical alignment of the data within a cell,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align Top Align Top icon icon to align your data to the top of the cell;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align Middle Align Middle icon icon to align your data to the middle of the cell;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align Bottom Align Bottom icon icon to align your data to the bottom of the cell.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align top Align top icon icon to align your data to the top of the cell;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align middle Align middle icon icon to align your data to the middle of the cell;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • click the Align bottom Align bottom icon icon to align your data to the bottom of the cell.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Change the angle of the data within a cell, clicking the Orientation Orientation icon icon and choosing one of the options: @@ -35,7 +35,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • use the Rotate Text Down Rotate Text Down option to place the text from top to bottom of a cell.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Fit your data to the column width clicking the Wrap Text Wrap Text icon icon. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Fit your data to the column width clicking the Wrap text Wrap text icon icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note: if you change the column width, data wrapping adjusts automatically.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ChangeNumberFormat.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ChangeNumberFormat.htm index 98b360056..3d872d21c 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ChangeNumberFormat.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ChangeNumberFormat.htm @@ -15,7 +15,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. select a cell, a range of cells with the mouse or the whole worksheet by pressing the Ctrl+A key combination,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Note: you can also select multiple non-adjacent cells or cell ranges holding down the Ctrl key while selecting cells/ranges with the mouse.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. click the General Format General Format button button situated at the top toolbar and select the number format you wish to apply: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. drop-down the Number format General format button list situated at the Home tab of the top toolbar and select the number format you wish to apply:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • General - is used to display the data you enter as plain numbers in the most compact way without any additional signs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Number - is used to display the numbers with 0-30 digits after the decimal point where a thousand separator is added between each group of three digits before the decimal point,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • @@ -23,13 +23,13 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Scientific (exponential) - is used to keep short the numbers converting in a string of type d.dddE+ddd or d.dddE-ddd where each d is a digit 0 to 9,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Accounting - is used to display monetary values with the default currency symbol and two decimal places. To apply another currency symbol or number of decimal places, follow the instructions below. Unlike the Currency format, the Accounting format aligns currency symbols by the left side of the cell, represents zero values as dashes and displays negative values in parentheses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Accounting and Currency number formats

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note: to quickly apply the Accounting format to the selected data, you can also click the Accounting Style Accounting Style icon icon at the top toolbar and select the necessary currency symbol: one of the following currency symbols: $ Dollar, Euro, £ Pound, Rouble, ¥ Yen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note: to quickly apply the Accounting format to the selected data, you can also click the Accounting style Accounting style icon icon at the Home tab of the top toolbar and select the necessary currency symbol: one of the following currency symbols: $ Dollar, Euro, £ Pound, Rouble, ¥ Yen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Currency - is used to display monetary values with the default currency symbol and two decimal places. To apply another currency symbol or number of decimal places, follow the instructions below. Unlike the Accounting format, the Currency format places a currency symbol directly before the first digit and displays negative values with the negative sign (-).
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Date - is used to display dates,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Time - is used to display time,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Persentage - is used to display the data as a percentage accompanied by a percent sign %, -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note: to quickly apply the percent style to your data you can also use the Percent Style Percent Style icon icon at the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note: to quickly apply the percent style to your data you can also use the Percent style Percent style icon icon at the Home tab of the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Fraction - is used to display the numbers as common fractions rather than decimals.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Text - is used to display the numeric values as a plain text with as much precision as available.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • @@ -38,8 +38,8 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • change the number of decimal places, if needed:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • use the Increase Decimal Increase Decimal icon icon situated at the top toolbar to display more digits after the decimal point,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • use the Decrease Decimal Decrease Decimal icon icon situated at the top toolbar to display fewer digits after the decimal point.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • use the Increase decimal Increase decimal icon icon situated at the Home tab of the top toolbar to display more digits after the decimal point,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • use the Decrease decimal Decrease decimal icon icon situated at the Home tab of the top toolbar to display fewer digits after the decimal point.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -47,7 +47,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You can customize the applied number format in the following way:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. select the cells you want to customize the number format for,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. click the General Format General Format button button at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. drop-down the Number format General format button list at the Home tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. select the More formats option,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. in the Number Format window that opens, adjust the available parameters. The options differ depending on the number format that is applied to the selected cells. You can use the Category list to change the number format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Number Format window

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ClearFormatting.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ClearFormatting.htm index f7098eede..38380c101 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ClearFormatting.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ClearFormatting.htm @@ -16,7 +16,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. select a cell, a range of cells with the mouse or the whole worksheet by pressing the Ctrl+A key combination,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Note: you can also select multiple non-adjacent cells or cell ranges holding down the Ctrl key while selecting cells/ranges with the mouse.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. click the Clear Clear icon at the top toolbar and select one of the available options: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. click the Clear Clear icon at the Home tab of the top toolbar and select one of the available options:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • use the All option if you wish to remove all including text, format, function etc;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • use the Text option if you wish to remove the text from the selected range of cells;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • @@ -32,15 +32,15 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the copied format to a single cell or several adjacent cells,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell/range of cells which format 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 cell/range of cells you want to apply the same format to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To apply the copied format to multiple non-adjacent cells or cell ranges,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. select the cell/range of cells which format 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. click single cells or select cell ranges one by one to apply the same format to all 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.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/CopyPasteData.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/CopyPasteData.htm index 79f39b73e..406f5e0f7 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/CopyPasteData.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/CopyPasteData.htm @@ -10,7 +10,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cut/copy/paste data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Use basic clipboard operations

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To cut, copy and paste data in the current spreadsheet make use of the right-click menu or use the corresponding icons at the top toolbar,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To cut, copy and paste data in the current spreadsheet make use of the right-click menu or use the corresponding icons available at any tab of the top toolbar,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Cut - select data and use the Cut option from the right-click menu to delete the selected data and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same spreadsheet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Copy - select data and either use the Copy Copy icon icon at the top toolbar or right-click and select the Copy option from the menu to send the selected data to the computer clipboard memory. The copied data can be later inserted to another place in the same spreadsheet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FontTypeSizeStyle.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FontTypeSizeStyle.htm index 511eee48a..0d6120c41 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FontTypeSizeStyle.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/FontTypeSizeStyle.htm @@ -10,27 +10,27 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Set font type, size, style, and colors

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You can select the font type and its size, apply one of the decoration styles and change the font and background colors using the corresponding icons situated at the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You can select the font type and its size, apply one of the decoration styles and change the font and background colors using the corresponding icons situated at the Home tab of the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Note: in case you want to apply the formatting to the data already present in the spreadsheet, select them with the mouse or using the keyboard and apply the formatting. If you need to apply the formatting to multiple non-adjacent cells or cell ranges, hold down the Ctrl key while selecting cells/ranges with the mouse.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - - + + - - + + - + - + @@ -49,22 +49,22 @@ - - + + - - + + - - + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                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.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Increment font sizeFont SizeFont size Is used to change the font size making it larger one point each time the icon is clicked.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Decrement font sizeFont SizeFont size Is used to change the font size making it smaller one point each time the icon is clicked.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Is used to make the text underlined with the line going under the letters.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Font ColorFont ColorFont colorFont color Is used to change the color of the letters/characters in cells.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Background ColorBackground ColorBackground colorBackground color Is used to change the color of the cell background.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Change Color SchemeChange Color SchemeChange color schemeChange color scheme Is used to change the default color palette for worksheet elements (font, background, chats and chart elements) selecting one of the available ones: Office, Grayscale, Apex, Aspect, Civic, Concourse, Equity, Flow, Foundry, Median, Metro, Module, Odulent, Oriel, Origin, Paper, Solstice, Technic, Trek, Urban, or Verve.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Note: it's also possible to apply one of the formatting presets selecting the cell you wish to format and choosing the desired preset from the list at the top toolbar:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Note: it's also possible to apply one of the formatting presets selecting the cell you wish to format and choosing the desired preset from the list at the Home tab of the top toolbar:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Formatting Presets

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To change the font/background color,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @@ -86,7 +86,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To clear the background color of a certain cell,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. select a cell, or a range of cells with the mouse or the whole worksheet using the Ctrl+A key combination,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. click the Background Color Background Color icon at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. click the Background color Background color icon at the Home tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                6. select the No Fill icon.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm index ca80636ee..224de7a28 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm @@ -13,14 +13,15 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Insert an autoshape

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To add an autoshape to your spreadsheet,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                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. once the autoshape is added you can change its size and position as well as its settings.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Adjust the autoshape settings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Some of the autoshape settings can be altered using the Shape Settings tab of the right sidebar that opens if you select the inserted autoshape with the mouse and click the Shape Settings Shape Settings icon icon. Here you can change the following settings:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Some of the autoshape settings can be altered using the Shape settings tab of the right sidebar that opens if you select the inserted autoshape with the mouse and click the Shape settings Shape settings icon icon. Here you can change the following settings:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertImages.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertImages.htm index 733fb7e32..49788711b 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertImages.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertImages.htm @@ -15,7 +15,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To insert an image into the spreadsheet,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. place the cursor where you want the image to be put,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3. click the Insert Image Insert Image icon icon at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5. switch to the Insert tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              7. click the Picture icon Picture icon at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              8. select one of the following options to load the image:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • the Picture from File option will open the standard Windows dialog window for file selection. Browse your computer hard disk drive for the necessary file and click the Open button
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • @@ -30,15 +31,15 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the image you wish to resize with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. - click the Image Settings Image Settings icon icon at the right sidebar, + click the Image settings Image settings icon icon at the right sidebar,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Image Settings Right-Side Panel window

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. in the Size section, set the necessary Width and Height values. If the Constant Proportions Constant Proportions icon button is clicked (in this case it looks like this Constant Proportions icon activated), the width and height will be changed together preserving the original image aspect ratio. To restore the default size of the added image, click the Default Size button.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. in the Size section, set the necessary Width and Height values. If the Constant proportions Constant proportions icon button is clicked (in this case it looks like this Constant proportions icon activated), the width and height will be changed together preserving the original image aspect ratio. To restore the default size of the added image, click the Default Size button.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To replace the inserted image,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. select the image you wish to replace with the mouse,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. click the Image Settings Image Settings icon icon at the right sidebar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. click the Image settings Image settings icon icon at the right sidebar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. in the Replace Image section click the button you need: From File or From URL and select the desired image.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The selected image will be replaced.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm index 1a1b8ea66..bc92f0aa3 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertTextObjects.htm @@ -14,13 +14,13 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Add a text object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You can add a text object anywhere on the worksheet. To do that:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. click the Insert Text Insert Text icon icon at the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. switch to the Insert tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. select the necessary text object type:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • select the Insert text box option from the menu, then click where you want to insert the text box, hold the mouse button and drag the text box border to specify its size. When you release the mouse button, the insertion point will appear in the added text box, allowing you to enter your text. -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: it's also possible to insert a text box by clicking the Insert Autoshape Insert Autoshape icon icon at the top toolbar and selecting the Insert Text autoshape shape from the Basic Shapes group.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • to add a text box, click the Text icon Text icon at the top toolbar, then click where you want to insert the text box, hold the mouse button and drag the text box border to specify its size. When you release the mouse button, the insertion point will appear in the added text box, allowing you to enter your text. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: it's also possible to insert a text box by clicking the Shape icon Shape icon at the top toolbar and selecting the Insert Text autoshape shape from the Basic Shapes group.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • select the Insert Text Art option from the menu, then click on the desired style template – the Text Art object will be added in the center of the worksheet. Select the default text within the text box with the mouse and replace it with your own text.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • to add a Text Art object, click the Text Art icon Text Art icon at the top toolbar, then click on the desired style template – the Text Art object will be added in the center of the worksheet. Select the default text within the text box with the mouse and replace it with your own text.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. click outside of the text object to apply the changes and return to the worksheet.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. @@ -33,7 +33,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Text box selected

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • to resize, move, rotate the text box use the special handles on the edges of the shape.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • to edit the text box fill, stroke, replace the rectangular box with a different shape, or access the shape advanced settings, click the Shape Settings Shape Settings icon icon on the right sidebar and use the corresponding options.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • to edit the text box fill, stroke, replace the rectangular box with a different shape, or access the shape advanced settings, click the Shape settings Shape settings icon icon on the right sidebar and use the corresponding options.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • to arrange text boxes as related to other objects, right-click on the text box border and use the contextual menu options.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • to create columns of text within the text box, right-click on the text box border, click the Shape Advanced Settings option and switch to the Columns tab in the Shape - Advanced Settings window.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @@ -42,15 +42,15 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Text selected

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Note: it's also possible to change text formatting when the text box (not the text itself) is selected. In such a case, any changes will be applied to all the text within the text box. Some font formatting options (font type, size, color and decoration styles) can be applied to a previously selected portion of the text separately.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Adjust font formatting settings (change the font type, size, color and apply decoration styles) using the corresponding icons situated at the top toolbar. Some additional font settings can be also altered at the Font tab of the paragraph properties window. To access it, right-click the text in the text box and select the Text Advanced Settings option.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Align the text horizontally within the text box using the corresponding icons situated at the top toolbar.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Align the text vertically within the text box using the corresponding icons situated at the top toolbar. You can also right-click the text, select the Vertical Alignment option and then choose one of the available options: Align Top, Align Center or Align Bottom.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Adjust font formatting settings (change the font type, size, color and apply decoration styles) using the corresponding icons situated at the Home tab of the top toolbar. Some additional font settings can be also altered at the Font tab of the paragraph properties window. To access it, right-click the text in the text box and select the Text Advanced Settings option.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Align the text horizontally within the text box using the corresponding icons situated at the Home tab of the top toolbar.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Align the text vertically within the text box using the corresponding icons situated at the Home tab of the top toolbar. You can also right-click the text, select the Vertical Alignment option and then choose one of the available options: Align Top, Align Center or Align Bottom.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Rotate the text within the text box. To do that, right-click the text, select the Text Direction option and then choose one of the available options: Horizontal (is selected by default), Rotate at 90° (sets a vertical direction, from top to bottom) or Rotate at 270° (sets a vertical direction, from bottom to top).
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Create a bulleted or numbered list. To do that, right-click the text, select the Bullets and Numbering option from the contextual menu and then choose one of the available bullet characters or numbering styles.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bullets and numbering

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Insert a hyperlink.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Set line and paragraph spacing for the multi-line text within the text box using the Text Settings tab of the right sidebar that opens if you click the Text Settings Text Settings icon icon. Here you can set the line height for the text lines within the paragraph as well as the margins between the current and the preceding or the subsequent paragraph. -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Text Settings tab

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Set line and paragraph spacing for the multi-line text within the text box using the Text settings tab of the right sidebar that opens if you click the Text settings Text settings icon icon. Here you can set the line height for the text lines within the paragraph as well as the margins between the current and the preceding or the subsequent paragraph. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Text settings tab

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Line Spacing - set the line height for the text lines within the paragraph. You can select among three options: at least (sets the minimum line spacing that is needed to fit the largest font or graphic on the line), multiple (sets line spacing that can be expressed in numbers greater than 1), exactly (sets fixed line spacing). You can specify the necessary value in the field on the right.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Paragraph Spacing - set the amount of space between paragraphs. @@ -61,7 +61,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Change the advanced settings of the paragraph (you can adjust paragraph indents and tab stops for the multi-line text within the text box and apply some font formatting settings). Put the cursor within the paragraph you need - the Text Settings tab will be activated at the right sidebar. Click the Show advanced settings link. The paragraph properties window will be opened: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Change the advanced settings of the paragraph (you can adjust paragraph indents and tab stops for the multi-line text within the text box and apply some font formatting settings). Put the cursor within the paragraph you need - the Text settings tab will be activated at the right sidebar. Click the Show advanced settings link. The paragraph properties window will be opened:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Paragraph Properties - Indents & Placement tab

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Indents & Placement tab allows to change the first line offset from the left internal margin of the text box as well as the paragraph offset from the left and right internal margins of the text box.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Paragraph Properties - Font tab

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @@ -93,8 +93,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Edit a Text Art style

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Select a text object and click the Text Art Settings Text Art Settings icon icon on the right sidebar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Text Art Setting tab

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Select a text object and click the Text Art settings Text Art settings icon icon on the right sidebar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Text Art setting tab

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Change the applied text style selecting a new Template from the gallery. You can also change the basic style additionally by selecting a different font type, size etc.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Change the font fill and stroke. The available options are the same as the ones for autoshapes.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ManipulateObjects.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ManipulateObjects.htm index 15a692b83..b547f4fde 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ManipulateObjects.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ManipulateObjects.htm @@ -12,7 +12,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      You can resize, move, rotate and arrange autoshapes, images and charts inserted into your worksheet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Resize objects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To change the autoshape/image/chart size, drag small squares Square icon situated on the object edges. To maintain the original proportions of the selected object while resizing, hold down the Shift key and drag one of the corner icons.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: to resize the inserted chart or image you can also use the right sidebar that will be activated once you select the necessary object. To open it, click the Chart Settings Chart Settings icon or the Image Settings Image Settings icon icon to the right. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: to resize the inserted chart or image you can also use the right sidebar that will be activated once you select the necessary object. To open it, click the Chart settings Chart settings icon or the Image settings Image settings icon icon to the right.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Maintaining proportions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Move objects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To alter the autoshape/image/chart position, use the Arrow icon that appears after hovering your mouse cursor over the object. Drag the object to the necessary position without releasing the mouse button. @@ -28,8 +28,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Bring to Foreground - to move the selected object in front of all other objects,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Send to Background - to move the selected object behind all other objects,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Move Forward - to move the selected object by one level forward as related to other objects,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Move Backward - to move the selected object by one level backward as related to other objects.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Bring Forward - to move the selected object by one level forward as related to other objects,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Send Backward - to move the selected object by one level backward as related to other objects.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Group several objects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To manipulate several objects at once, you can group them. Hold down the Ctrl key while selecting the objects with the mouse, then right-click to open the context menu and select the Group option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/MergeCells.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/MergeCells.htm index 681cf3785..11a1359ab 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/MergeCells.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/MergeCells.htm @@ -14,7 +14,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • select two cells or a range of cells with the mouse,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: the selected cells MUST be adjacent.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • click the Merge Merge icon icon situated at the top toolbar and select one of the available options: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • click the Merge Merge icon icon situated at the Home tab of the top toolbar and select one of the available options:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note: only the data in the upper-left cell of the selected range will remain in the merged cell. Data in other cells of the selected range will be deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • if you select the Merge & Center option the cells of the selected range will be merged and the data will be centered in the merged cells;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm index 157ec4ed4..629a3accb 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/OpenCreateNew.htm @@ -11,17 +11,17 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Create a new spreadsheet or open an existing one

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When Spreadsheet Editor is open to create a new spreadsheet:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. click the File File icon icon at the left sidebar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the File tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. select the Create New... option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        After you finished working at one spreadsheet, you can immediately proceed to an already existing spreadsheet that you have recently edited, or return to the list of existing ones.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To open a recently edited spreadsheet within Spreadsheet Editor,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. click the File File icon icon at the left sidebar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the File tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. select the Open Recent... option,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. choose the spreadsheet you need from the list of recently edited spreadsheets.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To return to the list of existing spreadsheets, click the Go to Documents link in the right upper corner or the File File icon icon at the left sidebar and select the Go to Documents option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To return to the list of existing spreadsheets, click the Go to Documents Go to Documents icon on the right side of the editor header. Alternatively, you can switch to the File tab of the top toolbar and select the Go to Documents option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm index 65b7625cf..1b8dcdf90 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SavePrintDownload.htm @@ -15,12 +15,12 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the Save Save icon icon at the top toolbar, or
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • use the Ctrl+S key combination, or
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the File File icon icon at the left sidebar and select the Save option.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • click the File tab of the top toolbar and select the Save option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To download the resulting spreadsheet onto your computer hard disk drive,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. click the File File icon icon at the left sidebar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. click the File tab of the top toolbar,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. select the Download as... option,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. choose one of the available formats depending on your needs: XLSX, PDF, ODS, CSV.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: if you select the CSV format, all features (font formatting, formulas etc.) except the plain text will not be preserved in the CSV file. If you continue saving, the Choose CSV Options window will open. By default, Unicode (UTF-8) is used as the Encoding type. The default Delimiter is comma (,), but the following options are also available: semicolon (;), colon (:), Tab, Space and Other (this option allows you to set a custom delimiter character).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -31,10 +31,10 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • click the Print Print icon icon at the top toolbar, or
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • use the Ctrl+P key combination, or
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • click the File File icon icon at the left sidebar and select the Print option.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • click the File tab of the top toolbar and select the Print option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Print Settings window will open, where you can change the default print settings. Click the Show Details button at the bottom of the window to display all the parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: you can also adjust the print settings on the Advanced Settings... page: click the File File icon icon at the left sidebar and follow Advanced Settings... >> Page Settings. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: you can also adjust the print settings on the Advanced Settings... page: click the File tab of the top toolbar and follow Advanced Settings... >> Page Settings.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Print Settings window

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Here you can adjust the following parameters:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SortData.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SortData.htm index 3d48dae74..4696cb5af 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SortData.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/SortData.htm @@ -20,9 +20,9 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select a range of cells you wish to sort (you can select a single cell in a range to sort the entire range),
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Sort Ascending Sort Ascending icon icon situated at the top toolbar to sort your data in ascending order, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. click the Sort ascending Sort ascending icon icon situated at the Home tab of the top toolbar to sort your data in ascending order,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OR
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              - click the Sort Descending Sort Descending icon icon situated at the top toolbar to sort your data in descending order. + click the Sort descending Sort descending icon icon situated at the Home tab of the top toolbar to sort your data in descending order.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Note: if you select a single column/row within a cell range or a part of the column/row, you will be asked if you want to expand the selection to include adjacent cells or sort the selected data only.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @@ -46,7 +46,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. Select a range of cells containing data to filter (you can select a single cell in a range to filter the entire range),
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. - Click the Filter Filter icon icon situated at the top toolbar. + Click the Filter Filter icon icon situated at the Home tab of the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The drop-down arrow Drop-Down Arrow will appear in the first cell of each column of the selected cell range. It means that the filter is enabled.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @@ -138,7 +138,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To facilitate the work with your data Spreadsheet Editor allows you to apply a table template to a selected cell range automatically enabling the filter. To do that,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select a range of cells you need to format,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Format as Table Template Format as Table Template icon situated at the top toolbar.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. click the Format as table template Format as table template icon situated at the Home tab of the top toolbar.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. select the template you need in the gallery,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. in the opened pop-up window check the range of cells to be formatted as a table,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. check the Title if you wish the table headers to be included in the selected range of cells, otherwise the header row will be added at the top while the selected range of cells will be moved one row down,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. @@ -146,8 +146,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The template will be applied to the selected range of cells and you will be able to edit the table headers and apply the filter to work with your data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Note: once you create a new formatted table, a default name (Table1, Table2 etc.) will be automatically assigned to the table. You can change this name making it more meaningful and use it for further work.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Some of the table settings can be altered using the Table Settings tab of the right sidebar that opens if you select at least one cell within the table with the mouse and click the Table Settings Table Settings icon icon on the right.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Table Settings tab

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Some of the table settings can be altered using the Table settings tab of the right sidebar that opens if you select at least one cell within the table with the mouse and click the Table settings Table settings icon icon on the right.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Table settings tab

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Rows and Columns sections on the top allow you to emphasize certain rows/columns applying a specific formatting to them, or highlight different rows/columns with the different background colors to clearly distinguish them. The following options are available:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Header - allows to display the header row.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • @@ -172,7 +172,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Delete a row, column (depending on the cursor position or the selection), or the entire table.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Note: the options of the Rows & Columns section are also accessible from the right-click menu.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Convert to range button can be used if you want to transform the table into a regular data range removing the filter but preserving the table style (i.e. cell and font colors etc.). Once you apply this option, the Table Settings tab at the right sidebar will be unavailable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Convert to range button can be used if you want to transform the table into a regular data range removing the filter but preserving the table style (i.e. cell and font colors etc.). Once you apply this option, the Table settings tab at the right sidebar will be unavailable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To change the advanced table properties, use the Show advanced settings link at the right sidebar. The table properties window will open:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Table - Advanced Settings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Alternative Text tab allows to specify a Title and Description which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the table.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @@ -192,14 +192,14 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You can also proceed in the following way:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the range of cells containing the filtered data,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Clear Filter Clear Filter icon icon situated at the top toolbar.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. click the Clear filter Clear filter icon icon situated at the Home tab of the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The filter will remain enabled, but all the applied filter parameters will be removed, and the Filter Filter button buttons in the first cells of the columns will change into the drop-down arrows Drop-Down Arrow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Remove Filter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To remove the filter,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. select the range of cells containing the filtered data,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. click the Filter Filter icon icon situated at the top toolbar.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. click the Filter Filter icon icon situated at the Home tab of the top toolbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The filter will be disabled, and the drop-down arrows Drop-Down Arrow will disappear from the first cells of the columns.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UndoRedo.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UndoRedo.htm index 9cfaa938f..1fa4eee76 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UndoRedo.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UndoRedo.htm @@ -10,7 +10,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Undo/redo your actions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

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

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

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

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Undo – use the Undo Undo icon icon to undo the last operation you performed.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Redo – use the Redo Redo icon icon to redo the last undone operation.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UseNamedRanges.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UseNamedRanges.htm index 1588fe7d2..1a8cc016e 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UseNamedRanges.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/UseNamedRanges.htm @@ -24,7 +24,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Open a new name window in a suitable way:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Right-click the selection and choose the Define Name option from the contextual menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • or click the Named Ranges Named Ranges icon icon at the top toolbar and select the New name option from the menu.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • or click the Named ranges Named ranges icon icon at the Home tab of the top toolbar and select the New name option from the menu.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The New Name window will open:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          New Name window

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -44,7 +44,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Manage names

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          All the existing names can be accessed via the Name Manager. To open it:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • click the Named Ranges Named Ranges icon icon at the top toolbar and select the Name manager option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • click the Named ranges Named ranges icon icon at the Home tab of the top toolbar and select the Name manager option from the menu,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • or click the arrow in the name field and select the Manager option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Name Manager window will open:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -68,7 +68,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • enter the name of the necessary named range manually using the keyboard. Once you type the initial letters, the Formula Autocomplete list will be displayed. As you type, the items (formulas and names) that match the entered characters are displayed in it. You can select the necessary name from the list and insert it into the formula by double-clicking it or pressing the Tab key.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • - or click the Named Ranges Named Ranges icon icon at the top toolbar, select the Paste name option from the menu, choose the necessary name from the Paste Name window and click OK: + or click the Named ranges Named ranges icon icon at the Home tab of the top toolbar, select the Paste name option from the menu, choose the necessary name from the Paste Name window and click OK:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Paste Name window

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm index 35e1c8fc4..ede52a0d6 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/ViewDocInfo.htm @@ -9,10 +9,12 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          View file information

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To access the detailed information about the currently edited spreadsheet, click the File File icon icon at the left sidebar and select the Spreadsheet Info option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To access the detailed information about the currently edited spreadsheet, click the File tab of the top toolbar and select the Spreadsheet Info option.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          General Information

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The file information includes spreadsheet title, author, location and creation date.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: Online Editors allow you to change the spreadsheet title directly from the editor interface. To do that, select the Rename... option from the File File icon menu or click on the file name displayed in the editor header next to the logo (in the upper left corner), then enter the necessary File name in a new window that opens and click OK.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: Online Editors allow you to change the spreadsheet title directly from the editor interface. To do that, click the File tab of the top toolbar and select the Rename... option, then enter the necessary File name in a new window that opens and click OK.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Permission Information

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: this option is not available for users with the Read Only permissions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/access_rights.png b/apps/spreadsheeteditor/main/resources/help/en/images/access_rights.png index 6d3cb0bf8..63cf5f972 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/access_rights.png and b/apps/spreadsheeteditor/main/resources/help/en/images/access_rights.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/addhyperlink.png b/apps/spreadsheeteditor/main/resources/help/en/images/addhyperlink.png index 5627099c9..47b4c40df 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/addhyperlink.png and b/apps/spreadsheeteditor/main/resources/help/en/images/addhyperlink.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/aggregate.png b/apps/spreadsheeteditor/main/resources/help/en/images/aggregate.png new file mode 100644 index 000000000..b5a98dd96 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/aggregate.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/aggregate2.png b/apps/spreadsheeteditor/main/resources/help/en/images/aggregate2.png new file mode 100644 index 000000000..add01cfaa Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/aggregate2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/basiccalculations.png b/apps/spreadsheeteditor/main/resources/help/en/images/basiccalculations.png index 035246069..6de8de34b 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/basiccalculations.png and b/apps/spreadsheeteditor/main/resources/help/en/images/basiccalculations.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/besseli.png b/apps/spreadsheeteditor/main/resources/help/en/images/besseli.png new file mode 100644 index 000000000..a40c85ae5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/besseli.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/besselj.png b/apps/spreadsheeteditor/main/resources/help/en/images/besselj.png new file mode 100644 index 000000000..aa2f9709b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/besselj.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/besselk.png b/apps/spreadsheeteditor/main/resources/help/en/images/besselk.png new file mode 100644 index 000000000..c9c6b9d67 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/besselk.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/bessely.png b/apps/spreadsheeteditor/main/resources/help/en/images/bessely.png new file mode 100644 index 000000000..da36466f2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/bessely.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/binom-dist-range.png b/apps/spreadsheeteditor/main/resources/help/en/images/binom-dist-range.png new file mode 100644 index 000000000..da008d647 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/binom-dist-range.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/bitand.png b/apps/spreadsheeteditor/main/resources/help/en/images/bitand.png new file mode 100644 index 000000000..1e4c84aff Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/bitand.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/bitlshift.png b/apps/spreadsheeteditor/main/resources/help/en/images/bitlshift.png new file mode 100644 index 000000000..05b7e942b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/bitlshift.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/bitor.png b/apps/spreadsheeteditor/main/resources/help/en/images/bitor.png new file mode 100644 index 000000000..a5bba46c7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/bitor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/bitrshift.png b/apps/spreadsheeteditor/main/resources/help/en/images/bitrshift.png new file mode 100644 index 000000000..2e70b8110 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/bitrshift.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/bitxor.png b/apps/spreadsheeteditor/main/resources/help/en/images/bitxor.png new file mode 100644 index 000000000..d98528c30 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/bitxor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/chart.png b/apps/spreadsheeteditor/main/resources/help/en/images/chart.png index a56e47b11..c439ab44f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/chart.png and b/apps/spreadsheeteditor/main/resources/help/en/images/chart.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/chartsettingsicon.png b/apps/spreadsheeteditor/main/resources/help/en/images/chartsettingsicon.png new file mode 100644 index 000000000..4320e8051 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/chartsettingsicon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/chisq-test.png b/apps/spreadsheeteditor/main/resources/help/en/images/chisq-test.png new file mode 100644 index 000000000..983d36296 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/chisq-test.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/chitest.png b/apps/spreadsheeteditor/main/resources/help/en/images/chitest.png new file mode 100644 index 000000000..d6ed85336 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/chitest.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/comment_toptoolbar.png b/apps/spreadsheeteditor/main/resources/help/en/images/comment_toptoolbar.png new file mode 100644 index 000000000..a33649d46 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/comment_toptoolbar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/covar.png b/apps/spreadsheeteditor/main/resources/help/en/images/covar.png index 452ef8d78..36d37d13f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/covar.png and b/apps/spreadsheeteditor/main/resources/help/en/images/covar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/covariance-p.png b/apps/spreadsheeteditor/main/resources/help/en/images/covariance-p.png new file mode 100644 index 000000000..0461f55be Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/covariance-p.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/covariance-s.png b/apps/spreadsheeteditor/main/resources/help/en/images/covariance-s.png new file mode 100644 index 000000000..d843cb17c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/covariance-s.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/daverage.png b/apps/spreadsheeteditor/main/resources/help/en/images/daverage.png new file mode 100644 index 000000000..229094daa Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/daverage.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/days.png b/apps/spreadsheeteditor/main/resources/help/en/images/days.png new file mode 100644 index 000000000..a3deec0f9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/days.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dcount.png b/apps/spreadsheeteditor/main/resources/help/en/images/dcount.png new file mode 100644 index 000000000..570987c02 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dcount.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dcounta.png b/apps/spreadsheeteditor/main/resources/help/en/images/dcounta.png new file mode 100644 index 000000000..1c2c602b8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dcounta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dget.png b/apps/spreadsheeteditor/main/resources/help/en/images/dget.png new file mode 100644 index 000000000..a7356d1fc Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dget.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dmax.png b/apps/spreadsheeteditor/main/resources/help/en/images/dmax.png new file mode 100644 index 000000000..d47edd01c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dmax.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dmin.png b/apps/spreadsheeteditor/main/resources/help/en/images/dmin.png new file mode 100644 index 000000000..d95c1ba58 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dmin.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dproduct.png b/apps/spreadsheeteditor/main/resources/help/en/images/dproduct.png new file mode 100644 index 000000000..537f9a141 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dproduct.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dstdev.png b/apps/spreadsheeteditor/main/resources/help/en/images/dstdev.png new file mode 100644 index 000000000..d061c7da9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dstdev.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dstdevp.png b/apps/spreadsheeteditor/main/resources/help/en/images/dstdevp.png new file mode 100644 index 000000000..34ae48d90 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dstdevp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dsum.png b/apps/spreadsheeteditor/main/resources/help/en/images/dsum.png new file mode 100644 index 000000000..2c1ab686c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dsum.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dvar.png b/apps/spreadsheeteditor/main/resources/help/en/images/dvar.png new file mode 100644 index 000000000..a19e70a6e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dvar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/dvarp.png b/apps/spreadsheeteditor/main/resources/help/en/images/dvarp.png new file mode 100644 index 000000000..f948c8531 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/dvarp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/ecma-ceiling.png b/apps/spreadsheeteditor/main/resources/help/en/images/ecma-ceiling.png new file mode 100644 index 000000000..dadb35394 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/ecma-ceiling.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/erf-precise.png b/apps/spreadsheeteditor/main/resources/help/en/images/erf-precise.png new file mode 100644 index 000000000..51d697e70 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/erf-precise.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/erfc-precise.png b/apps/spreadsheeteditor/main/resources/help/en/images/erfc-precise.png new file mode 100644 index 000000000..ab80c3578 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/erfc-precise.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/firstsheet.png b/apps/spreadsheeteditor/main/resources/help/en/images/firstsheet.png index 636985dde..391f115b3 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/firstsheet.png and b/apps/spreadsheeteditor/main/resources/help/en/images/firstsheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/forecast-linear.png b/apps/spreadsheeteditor/main/resources/help/en/images/forecast-linear.png new file mode 100644 index 000000000..3c3b72943 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/forecast-linear.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/forecast.png b/apps/spreadsheeteditor/main/resources/help/en/images/forecast.png index c375c7d31..54ee8212c 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/forecast.png and b/apps/spreadsheeteditor/main/resources/help/en/images/forecast.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/gotodocuments.png b/apps/spreadsheeteditor/main/resources/help/en/images/gotodocuments.png new file mode 100644 index 000000000..bf5449484 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/gotodocuments.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/grouping.png b/apps/spreadsheeteditor/main/resources/help/en/images/grouping.png index 28592fbc3..45b1ab0b4 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/grouping.png and b/apps/spreadsheeteditor/main/resources/help/en/images/grouping.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/image.png b/apps/spreadsheeteditor/main/resources/help/en/images/image.png index 90eab5b06..58ca36dde 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/image.png and b/apps/spreadsheeteditor/main/resources/help/en/images/image.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insertautoshape.png b/apps/spreadsheeteditor/main/resources/help/en/images/insertautoshape.png index 5e49eab70..315c8474c 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/insertautoshape.png and b/apps/spreadsheeteditor/main/resources/help/en/images/insertautoshape.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/insertequationicon.png b/apps/spreadsheeteditor/main/resources/help/en/images/insertequationicon.png index 86b6d1c24..7dcd29b1c 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/insertequationicon.png and b/apps/spreadsheeteditor/main/resources/help/en/images/insertequationicon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/inserttextarticon.png b/apps/spreadsheeteditor/main/resources/help/en/images/inserttextarticon.png new file mode 100644 index 000000000..7b40e327f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/inserttextarticon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/inserttexticon.png b/apps/spreadsheeteditor/main/resources/help/en/images/inserttexticon.png index db7a834ba..26fbaac13 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/inserttexticon.png and b/apps/spreadsheeteditor/main/resources/help/en/images/inserttexticon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/isformula.png b/apps/spreadsheeteditor/main/resources/help/en/images/isformula.png new file mode 100644 index 000000000..1b1270f6a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/isformula.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/isoweeknum.png b/apps/spreadsheeteditor/main/resources/help/en/images/isoweeknum.png new file mode 100644 index 000000000..c95b955df Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/isoweeknum.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/lastsheet.png b/apps/spreadsheeteditor/main/resources/help/en/images/lastsheet.png index 7906401b5..09e8fbf73 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/lastsheet.png and b/apps/spreadsheeteditor/main/resources/help/en/images/lastsheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/maintain_proportions.png b/apps/spreadsheeteditor/main/resources/help/en/images/maintain_proportions.png index 552e843f7..6f89dbdcb 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/maintain_proportions.png and b/apps/spreadsheeteditor/main/resources/help/en/images/maintain_proportions.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/maxifs.png b/apps/spreadsheeteditor/main/resources/help/en/images/maxifs.png new file mode 100644 index 000000000..423f95570 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/maxifs.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/minifs.png b/apps/spreadsheeteditor/main/resources/help/en/images/minifs.png new file mode 100644 index 000000000..3090dcb01 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/minifs.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/mode-mult.png b/apps/spreadsheeteditor/main/resources/help/en/images/mode-mult.png new file mode 100644 index 000000000..100666f04 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/mode-mult.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/mode-sngl.png b/apps/spreadsheeteditor/main/resources/help/en/images/mode-sngl.png new file mode 100644 index 000000000..a2fed34ec Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/mode-sngl.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/mode.png b/apps/spreadsheeteditor/main/resources/help/en/images/mode.png index 0b76c2b64..5514b6332 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/mode.png and b/apps/spreadsheeteditor/main/resources/help/en/images/mode.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/negbinom-dist.png b/apps/spreadsheeteditor/main/resources/help/en/images/negbinom-dist.png new file mode 100644 index 000000000..58979e62f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/negbinom-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/negbinomdist.png b/apps/spreadsheeteditor/main/resources/help/en/images/negbinomdist.png index 2ddeedbe3..3495338fc 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/negbinomdist.png and b/apps/spreadsheeteditor/main/resources/help/en/images/negbinomdist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/networkdays-intl.png b/apps/spreadsheeteditor/main/resources/help/en/images/networkdays-intl.png new file mode 100644 index 000000000..9a1673ae7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/networkdays-intl.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/nextsheet.png b/apps/spreadsheeteditor/main/resources/help/en/images/nextsheet.png index 74b7c7ced..85fa921d5 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/nextsheet.png and b/apps/spreadsheeteditor/main/resources/help/en/images/nextsheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/norm-dist.png b/apps/spreadsheeteditor/main/resources/help/en/images/norm-dist.png new file mode 100644 index 000000000..462b56b83 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/norm-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/norm-inv.png b/apps/spreadsheeteditor/main/resources/help/en/images/norm-inv.png new file mode 100644 index 000000000..9ab859681 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/norm-inv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/norm-s-dist.png b/apps/spreadsheeteditor/main/resources/help/en/images/norm-s-dist.png new file mode 100644 index 000000000..7f64f9479 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/norm-s-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/norm-s-inv.png b/apps/spreadsheeteditor/main/resources/help/en/images/norm-s-inv.png new file mode 100644 index 000000000..133defd8c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/norm-s-inv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/normdist.png b/apps/spreadsheeteditor/main/resources/help/en/images/normdist.png index 31619b7cb..894359994 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/normdist.png and b/apps/spreadsheeteditor/main/resources/help/en/images/normdist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/permutationa.png b/apps/spreadsheeteditor/main/resources/help/en/images/permutationa.png new file mode 100644 index 000000000..a3d99b4d2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/permutationa.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/phi.png b/apps/spreadsheeteditor/main/resources/help/en/images/phi.png new file mode 100644 index 000000000..6a48f459d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/phi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/poisson-dist.png b/apps/spreadsheeteditor/main/resources/help/en/images/poisson-dist.png new file mode 100644 index 000000000..92ed3b582 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/poisson-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/previoussheet.png b/apps/spreadsheeteditor/main/resources/help/en/images/previoussheet.png index 563b5f082..ecb9a8de4 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/previoussheet.png and b/apps/spreadsheeteditor/main/resources/help/en/images/previoussheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/quartile-exc.png b/apps/spreadsheeteditor/main/resources/help/en/images/quartile-exc.png new file mode 100644 index 000000000..8de45cbb5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/quartile-exc.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/quartile-inc.png b/apps/spreadsheeteditor/main/resources/help/en/images/quartile-inc.png new file mode 100644 index 000000000..2cf59242f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/quartile-inc.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/reshaping.png b/apps/spreadsheeteditor/main/resources/help/en/images/reshaping.png index 63d533706..25d1a7777 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/reshaping.png and b/apps/spreadsheeteditor/main/resources/help/en/images/reshaping.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/rri.png b/apps/spreadsheeteditor/main/resources/help/en/images/rri.png new file mode 100644 index 000000000..6d42a4e23 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/rri.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/sheet.png b/apps/spreadsheeteditor/main/resources/help/en/images/sheet.png new file mode 100644 index 000000000..ca794de92 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/sheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/sheets.png b/apps/spreadsheeteditor/main/resources/help/en/images/sheets.png new file mode 100644 index 000000000..24cc5ca75 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/sheets.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/skew-p.png b/apps/spreadsheeteditor/main/resources/help/en/images/skew-p.png new file mode 100644 index 000000000..9752e422a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/skew-p.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/stdev-p.png b/apps/spreadsheeteditor/main/resources/help/en/images/stdev-p.png new file mode 100644 index 000000000..e7c8494e4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/stdev-p.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/stdev-s.png b/apps/spreadsheeteditor/main/resources/help/en/images/stdev-s.png new file mode 100644 index 000000000..fc9fe8efe Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/stdev-s.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/stdev.png b/apps/spreadsheeteditor/main/resources/help/en/images/stdev.png index 01d3c4cce..db54b05c6 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/stdev.png and b/apps/spreadsheeteditor/main/resources/help/en/images/stdev.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/sumifs.png b/apps/spreadsheeteditor/main/resources/help/en/images/sumifs.png index 0e49b5117..3b7059f0a 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/sumifs.png and b/apps/spreadsheeteditor/main/resources/help/en/images/sumifs.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/switch.png b/apps/spreadsheeteditor/main/resources/help/en/images/switch.png new file mode 100644 index 000000000..dc5209a46 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/switch.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/t-test.png b/apps/spreadsheeteditor/main/resources/help/en/images/t-test.png new file mode 100644 index 000000000..587d9ce24 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/t-test.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/table.png b/apps/spreadsheeteditor/main/resources/help/en/images/table.png index c65d9d32b..0e8b33b19 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/table.png and b/apps/spreadsheeteditor/main/resources/help/en/images/table.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/textjoin.png b/apps/spreadsheeteditor/main/resources/help/en/images/textjoin.png new file mode 100644 index 000000000..2d9fd31ea Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/textjoin.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/trimmean.png b/apps/spreadsheeteditor/main/resources/help/en/images/trimmean.png new file mode 100644 index 000000000..469f27faf Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/trimmean.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/ttest.png b/apps/spreadsheeteditor/main/resources/help/en/images/ttest.png new file mode 100644 index 000000000..bd6d8adae Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/ttest.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/unichar.png b/apps/spreadsheeteditor/main/resources/help/en/images/unichar.png new file mode 100644 index 000000000..9dff72bf9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/unichar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/unicode.png b/apps/spreadsheeteditor/main/resources/help/en/images/unicode.png new file mode 100644 index 000000000..5a8a5b823 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/unicode.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/usersnumber.png b/apps/spreadsheeteditor/main/resources/help/en/images/usersnumber.png index 1d378846f..15de516d8 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/usersnumber.png and b/apps/spreadsheeteditor/main/resources/help/en/images/usersnumber.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/var-p.png b/apps/spreadsheeteditor/main/resources/help/en/images/var-p.png new file mode 100644 index 000000000..63cbce1c3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/var-p.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/var-s.png b/apps/spreadsheeteditor/main/resources/help/en/images/var-s.png new file mode 100644 index 000000000..d85bf2883 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/var-s.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/varp.png b/apps/spreadsheeteditor/main/resources/help/en/images/varp.png index 5a5ddcde2..5b91fe931 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/en/images/varp.png and b/apps/spreadsheeteditor/main/resources/help/en/images/varp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/weibull-dist.png b/apps/spreadsheeteditor/main/resources/help/en/images/weibull-dist.png new file mode 100644 index 000000000..0b30de8c5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/weibull-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/weibull.png b/apps/spreadsheeteditor/main/resources/help/en/images/weibull.png new file mode 100644 index 000000000..f3fc48f6a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/weibull.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/workday-intl.png b/apps/spreadsheeteditor/main/resources/help/en/images/workday-intl.png new file mode 100644 index 000000000..69a2655e5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/workday-intl.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/z-test.png b/apps/spreadsheeteditor/main/resources/help/en/images/z-test.png new file mode 100644 index 000000000..101f27a0e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/z-test.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/ztest.png b/apps/spreadsheeteditor/main/resources/help/en/images/ztest.png new file mode 100644 index 000000000..87eb98c5c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/ztest.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/aggregate.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/aggregate.htm new file mode 100644 index 000000000..af916b628 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/aggregate.htm @@ -0,0 +1,190 @@ + + + + Функция AGGREGATE (АГРЕГАТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция AGGREGATE (АГРЕГАТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция AGGREGATE - это одна из математических и тригонометрических функций. Возвращает агрегатный результат вычислений по списку или базе данных. С помощью функции AGGREGATE можно применять различные агрегатные функции к списку или базе данных с возможностью пропускать скрытые строки и значения ошибок.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции AGGREGATE:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AGGREGATE(function_num, options, ref1 [, ref2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          function_num числовое значение, которое обозначает используемую функцию. Допустимые значения приведены в таблице ниже.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          function_num
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1AVERAGE (СРЗНАЧ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2COUNT (СЧЁТ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3COUNTA (СЧЁТЗ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4MAX (МАКС)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5MIN (МИН)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6PRODUCT (ПРОИЗВЕД)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7STDEV.S (СТАНДОТКЛОН.В)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8STDEV.P (СТАНДОТКЛОН.Г)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9SUM (СУММ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10VAR.S (ДИСП.В)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11VAR.P (ДИСП.Г)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12MEDIAN (МЕДИАНА)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          13MODE.SNGL (МОДА.ОДН)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          14LARGE (НАИБОЛЬШИЙ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          15SMALL (НАИМЕНЬШИЙ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          16PERCENTILE.INC (ПРОЦЕНТИЛЬ.ВКЛ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          17QUARTILE.INC (КВАРТИЛЬ.ВКЛ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          18PERCENTILE.EXC (ПРОЦЕНТИЛЬ.ИСКЛ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          19QUARTILE.EXC (КВАРТИЛЬ.ИСКЛ)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          options - числовое значение, определяющее, какие значения следует пропускать. Допустимые значения приведены в таблице ниже.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Числовое значение
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Поведение
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          0 или опущенПропускать вложенные функции SUBTOTAL и AGGREGATE
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1Пропускать скрытые строки и вложенные функции SUBTOTAL и AGGREGATE
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2Пропускать значения ошибок и вложенные функции SUBTOTAL и AGGREGATE
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3Пропускать скрытые строки, значения ошибок и вложенные функции SUBTOTAL и AGGREGATE
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4Не пропускать ничего
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5Пропускать скрытые строки
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6Пропускать значения ошибок
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7Пропускать скрытые строки и значения ошибок
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ref1(2) - это до 253 числовых значений или ссылка на диапазон ячеек, содержащий значения, для которых требуется найти агрегированное значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Примечание: если вы хотите использовать одну из следующих функций: LARGE, SMALL, PERCENTILE.INC, QUARTILE.INC, PERCENTILE.EXC или QUARTILE.EXC, аргумент ref1 должен быть ссылкой на диапазон ячеек, а аргумент ref2 должен быть вторым аргументом, требуемым для этих функций (k или quart).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LARGE (НАИБОЛЬШИЙ)LARGE(array, k)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SMALL (НАИМЕНЬШИЙ)SMALL(array, k)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PERCENTILE.INC (ПРОЦЕНТИЛЬ.ВКЛ)PERCENTILE.INC(array, k)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          QUARTILE.INC (КВАРТИЛЬ.ВКЛ)QUARTILE.INC(array, quart)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PERCENTILE.EXC (ПРОЦЕНТИЛЬ.ИСКЛ)PERCENTILE.EXC(array, k)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          QUARTILE.EXC (КВАРТИЛЬ.ИСКЛ)QUARTILE.EXC(array, quart)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию AGGREGATE,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Математические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции AGGREGATE,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          На следующем изображении показан результат, возвращаемый функцией AGGREGATE, если применяется функция SUM.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция AGGREGATE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          На следующем изображении показан результат, возвращаемый функцией AGGREGATE, если применяется функция LARGE, ref1 - это ссылка на диапазон ячеек, а аргумент k равен 2. Функция возвращает второе наибольшее значение в диапазоне A1-A4.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция AGGREGATE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/besseli.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/besseli.htm new file mode 100644 index 000000000..4d8310695 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/besseli.htm @@ -0,0 +1,36 @@ + + + + Функция BESSELI (БЕССЕЛЬ.I) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELI (БЕССЕЛЬ.I)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELI - это одна из инженерных функций. Возвращает модифицированную функцию Бесселя, что эквивалентно вычислению функции Бесселя для чисто мнимого аргумента.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BESSELI:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BESSELI(X, N)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          X - это значение, для которого вычисляется функция,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          N - это порядок функции Бесселя, числовое значение, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BESSELI,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BESSELI,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/besselj.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/besselj.htm new file mode 100644 index 000000000..8d4383b10 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/besselj.htm @@ -0,0 +1,36 @@ + + + + Функция BESSELJ (БЕССЕЛЬ.J) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELJ (БЕССЕЛЬ.J)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELJ - это одна из инженерных функций. Возвращает функцию Бесселя.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BESSELJ:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BESSELJ(X, N)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          X - это значение, для которого вычисляется функция,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          N - это порядок функции Бесселя, числовое значение, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BESSELJ,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BESSELJ,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELJ

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/besselk.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/besselk.htm new file mode 100644 index 000000000..b27c3a1f1 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/besselk.htm @@ -0,0 +1,36 @@ + + + + Функция BESSELK (БЕССЕЛЬ.K) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELK (БЕССЕЛЬ.K)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELK - это одна из инженерных функций. Возвращает модифицированную функцию Бесселя, что эквивалентно вычислению функции Бесселя для чисто мнимого аргумента.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BESSELK:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BESSELK(X, N)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          X - это значение, для которого вычисляется функция, числовое значение больше 0,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          N - это порядок функции Бесселя, числовое значение, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BESSELK,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BESSELK,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELK

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/bessely.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bessely.htm new file mode 100644 index 000000000..71e802b14 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bessely.htm @@ -0,0 +1,36 @@ + + + + Функция BESSELY (БЕССЕЛЬ.Y) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELY (БЕССЕЛЬ.Y)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELY - это одна из инженерных функций. Возвращает функцию Бесселя, также называемую функцией Вебера или функцией Неймана.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BESSELY:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BESSELY(X, N)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          X - это значение, для которого вычисляется функция, числовое значение больше 0,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          N - это порядок функции Бесселя, числовое значение, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BESSELY,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BESSELY,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BESSELY

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/binom-dist-range.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/binom-dist-range.htm new file mode 100644 index 000000000..fa220d8e8 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/binom-dist-range.htm @@ -0,0 +1,38 @@ + + + + Функция BINOM.DIST.RANGE (БИНОМ.РАСП.ДИАП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BINOM.DIST.RANGE (БИНОМ.РАСП.ДИАП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BINOM.DIST.RANGE - это одна из статистических функций. Возвращает вероятность результата испытаний при помощи биномиального распределения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BINOM.DIST.RANGE:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BINOM.DIST.RANGE(trials, probability-s, number-s [, number-s2])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          trials - количество испытаний; числовое значение, большее или равное значению аргумента number-s.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          probability-s - вероятность успеха каждого испытания; числовое значение, большее или равное 0, но меньшее или равное 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number-s - минимальное количество успешных испытаний, для которых требуется вычислить вероятность; числовое значение, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number-s2 - необязательный аргумент. Максимальное количество успешных испытаний, для которых требуется вычислить вероятность; числовое значение, большее, чем значение аргумента number-s, и меньшее или равное значению аргумента trials.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BINOM.DIST.RANGE,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BINOM.DIST.RANGE,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BINOM.DIST.RANGE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitand.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitand.htm new file mode 100644 index 000000000..856cba1c2 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitand.htm @@ -0,0 +1,37 @@ + + + + Функция BITAND (БИТ.И) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITAND (БИТ.И)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITAND - это одна из инженерных функций. Возвращает результат операции поразрядного И для двух чисел.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BITAND:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BITAND(number1, number2)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number1 - числовое значение в десятичной форме, большее или равное 0,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number2 - числовое значение в десятичной форме, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Значение каждой битовой позиции считается, только если биты обоих параметров в этой позиции равны 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BITAND,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BITAND,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITAND

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitlshift.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitlshift.htm new file mode 100644 index 000000000..a4d0d7cd2 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitlshift.htm @@ -0,0 +1,37 @@ + + + + Функция BITLSHIFT (БИТ.СДВИГЛ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITLSHIFT (БИТ.СДВИГЛ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITLSHIFT - это одна из инженерных функций. Возвращает число со сдвигом влево на указанное число бит.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BITLSHIFT:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BITLSHIFT(number, shift_amount)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number - целое число, большее или равное 0,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          shift_amount - число бит, на которое требуется сдвинуть значение аргумента number; целое число.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Сдвиг числа влево эквивалентен добавлению нулей (0) к правой части двоичного представления числа.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BITLSHIFT,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BITLSHIFT,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITLSHIFT

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitor.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitor.htm new file mode 100644 index 000000000..8424d246e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitor.htm @@ -0,0 +1,37 @@ + + + + Функция BITOR (БИТ.ИЛИ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITOR (БИТ.ИЛИ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITOR - это одна из инженерных функций. Возвращает результат операции поразрядного ИЛИ для двух чисел.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BITOR:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BITOR(number1, number2)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number1 - числовое значение в десятичной форме, большее или равное 0,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number2 - числовое значение в десятичной форме, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Значение каждой битовой позиции считается, если биты хотя бы одного из параметров в этой позиции равны 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BITOR,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BITOR,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITOR

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitrshift.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitrshift.htm new file mode 100644 index 000000000..42f90c4cc --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitrshift.htm @@ -0,0 +1,37 @@ + + + + Функция BITRSHIFT (БИТ.СДВИГП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITRSHIFT (БИТ.СДВИГП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITRSHIFT - это одна из инженерных функций. Возвращает число со сдвигом вправо на указанное число бит.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BITRSHIFT:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BITRSHIFT(number, shift_amount)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number - целое число, большее или равное 0,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          shift_amount - число бит, на которое требуется сдвинуть значение аргумента number; целое число.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Сдвиг числа вправо эквивалентен удалению цифр с правой стороны двоичного представления числа.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BITRSHIFT,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BITRSHIFT,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITRSHIFT

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitxor.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitxor.htm new file mode 100644 index 000000000..9dae2cacc --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/bitxor.htm @@ -0,0 +1,37 @@ + + + + Функция BITXOR (БИТ.ИСКЛИЛИ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITXOR (БИТ.ИСКЛИЛИ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITXOR - это одна из инженерных функций. Возвращает результат операции поразрядного исключающего ИЛИ для двух чисел.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции BITXOR:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BITXOR(number1, number2)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number1 - числовое значение в десятичной форме, большее или равное 0,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number2 - числовое значение в десятичной форме, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Значение каждой битовой позиции равняется 1, если значения параметров в этой позиции не равны.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию BITXOR,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции BITXOR,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция BITXOR

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/chisq-test.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/chisq-test.htm new file mode 100644 index 000000000..a9d090cd0 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/chisq-test.htm @@ -0,0 +1,36 @@ + + + + Функция CHISQ.TEST (ХИ2.ТЕСТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция CHISQ.TEST (ХИ2.ТЕСТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция CHISQ.TEST - это одна из статистических функций. Возвращает критерий независимости - значение статистики для распределения хи-квадрат (χ2) и соответствующее число степеней свободы.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции CHISQ.TEST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CHISQ.TEST(actual-range, expected-range)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          actual-range - диапазон наблюдаемых (фактических) значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          expected-range - диапазон ожидаемых значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Диапазоны должны содержать равное количество значений. Каждое из ожидаемых значений должно быть больше или равно 5. Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию CHISQ.TEST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции CHISQ.TEST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция CHISQ.TEST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/chitest.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/chitest.htm new file mode 100644 index 000000000..23251b788 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/chitest.htm @@ -0,0 +1,36 @@ + + + + Функция CHITEST (ХИ2ТЕСТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция CHITEST (ХИ2ТЕСТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция CHITEST - это одна из статистических функций. Возвращает критерий независимости - значение статистики для распределения хи-квадрат (χ2) и соответствующее число степеней свободы.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции CHITEST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CHITEST(actual-range, expected-range)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          actual-range - диапазон наблюдаемых (фактических) значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          expected-range - диапазон ожидаемых значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Диапазоны должны содержать равное количество значений. Каждое из ожидаемых значений должно быть больше или равно 5. Эти аргументы можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию CHITEST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции CHITEST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция CHITEST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/covariance-p.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/covariance-p.htm new file mode 100644 index 000000000..303c3a7ae --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/covariance-p.htm @@ -0,0 +1,34 @@ + + + + Функция COVARIANCE.P (КОВАРИАЦИЯ.Г) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция COVARIANCE.P (КОВАРИАЦИЯ.Г)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция COVARIANCE.P - это одна из статистических функций. Возвращает ковариацию совокупности, то есть среднее произведений отклонений для каждой пары точек в двух наборах данных. Ковариация используется для определения связи между двумя наборами данных.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции COVARIANCE.P:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          COVARIANCE.P(array-1, array-2)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где array-1(2) - выбранные диапазоны ячеек, содержащие одно и то же количество значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Примечание: если аргумент array-1(2) содержит текст, логические значения или пустые ячейки, эти значения игнорируются, но ячейки с нулевыми значениями учитываются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию COVARIANCE.P,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции COVARIANCE.P,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция COVARIANCE.P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/covariance-s.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/covariance-s.htm new file mode 100644 index 000000000..e6d2beb5f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/covariance-s.htm @@ -0,0 +1,34 @@ + + + + Функция COVARIANCE.S (КОВАРИАЦИЯ.В) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция COVARIANCE.S (КОВАРИАЦИЯ.В)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция COVARIANCE.S - это одна из статистических функций. Возвращает ковариацию выборки, т. е. среднее произведений отклонений для каждой пары точек в двух наборах данных.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции COVARIANCE.S:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          COVARIANCE.S(array-1, array-2)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где array-1(2) - выбранные диапазоны ячеек, содержащие одно и то же количество значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Примечание: если аргумент array-1(2) содержит текст, логические значения или пустые ячейки, эти значения игнорируются, но ячейки с нулевыми значениями учитываются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию COVARIANCE.S,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции COVARIANCE.S,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция COVARIANCE.S

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/daverage.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/daverage.htm new file mode 100644 index 000000000..34b6cff3f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/daverage.htm @@ -0,0 +1,36 @@ + + + + Функция DAVERAGE (ДСРЗНАЧ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DAVERAGE (ДСРЗНАЧ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DAVERAGE - это одна из функций для работы с базами данных. Усредняет значения в поле (столбце) записей списка или базы данных, удовлетворяющие заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DAVERAGE:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DAVERAGE(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DAVERAGE,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DAVERAGE,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DAVERAGE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/days.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/days.htm new file mode 100644 index 000000000..7122f4085 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/days.htm @@ -0,0 +1,34 @@ + + + + Функция DAYS (ДНИ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DAYS (ДНИ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DAYS - это одна из функций даты и времени. Возвращает количество дней между двумя датами.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DAYS:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DAYS(end-date, start-date)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          end-date и start-date - две даты, количество дней между которыми требуется вычислить.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DAYS,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Дата и время,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DAYS,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DAYS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dcount.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dcount.htm new file mode 100644 index 000000000..5c03cfdc7 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dcount.htm @@ -0,0 +1,36 @@ + + + + Функция DCOUNT (БСЧЁТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DCOUNT (БСЧЁТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DCOUNT - это одна из функций для работы с базами данных. Подсчитывает количество ячеек в поле (столбце) записей списка или базы данных, которые содержат числа, удовлетворяющие заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DCOUNT:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DCOUNT(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DCOUNT,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DCOUNT,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DCOUNT

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dcounta.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dcounta.htm new file mode 100644 index 000000000..fdd537d5e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dcounta.htm @@ -0,0 +1,36 @@ + + + + Функция DCOUNTA (БСЧЁТА) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DCOUNTA (БСЧЁТА)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DCOUNTA - это одна из функций для работы с базами данных. Подсчитывает непустые ячейки (логические значения и текст тоже учитываются) в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DCOUNTA:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DCOUNTA(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DCOUNTA,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DCOUNTA,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DCOUNTA

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dget.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dget.htm new file mode 100644 index 000000000..5a13eac80 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dget.htm @@ -0,0 +1,36 @@ + + + + Функция DGET (БИЗВЛЕЧЬ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DGET (БИЗВЛЕЧЬ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DGET - это одна из функций для работы с базами данных. Извлекает из столбца списка или базы данных одно значение, удовлетворяющее заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DGET:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DGET(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DGET,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DGET,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DGET

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dmax.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dmax.htm new file mode 100644 index 000000000..d2e640354 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dmax.htm @@ -0,0 +1,36 @@ + + + + Функция DMAX (ДМАКС) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DMAX (ДМАКС)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DMAX - это одна из функций для работы с базами данных. Возвращает наибольшее число в поле (столбце) записей списка или базы данных, которое удовлетворяет заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DMAX:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DMAX(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DMAX,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DMAX,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DMAX

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dmin.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dmin.htm new file mode 100644 index 000000000..fb9e51e7e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dmin.htm @@ -0,0 +1,36 @@ + + + + Функция DMIN (ДМИН) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DMIN (ДМИН)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DMIN - это одна из функций для работы с базами данных. Возвращает наименьшее число в поле (столбце) записей списка или базы данных, которое удовлетворяет заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DMIN:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DMIN(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DMIN,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DMIN,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DMIN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dproduct.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dproduct.htm new file mode 100644 index 000000000..bb1bb720c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dproduct.htm @@ -0,0 +1,36 @@ + + + + Функция DPRODUCT (БДПРОИЗВЕД) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DPRODUCT (БДПРОИЗВЕД)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DPRODUCT - это одна из функций для работы с базами данных. Перемножает значения в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DPRODUCT:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DPRODUCT(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DPRODUCT,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DPRODUCT,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DPRODUCT

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dstdev.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dstdev.htm new file mode 100644 index 000000000..e161ae2f6 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dstdev.htm @@ -0,0 +1,36 @@ + + + + Функция DSTDEV (ДСТАНДОТКЛ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSTDEV (ДСТАНДОТКЛ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSTDEV - это одна из функций для работы с базами данных. Оценивает стандартное отклонение на основе выборки из генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DSTDEV:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DSTDEV(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DSTDEV,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DSTDEV,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSTDEV

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dstdevp.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dstdevp.htm new file mode 100644 index 000000000..04a363083 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dstdevp.htm @@ -0,0 +1,36 @@ + + + + Функция DSTDEVP (ДСТАНДОТКЛП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSTDEVP (ДСТАНДОТКЛП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSTDEVP - это одна из функций для работы с базами данных. Вычисляет стандартное отклонение генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DSTDEVP:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DSTDEVP(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DSTDEVP,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DSTDEVP,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSTDEVP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dsum.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dsum.htm new file mode 100644 index 000000000..41ecae94c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dsum.htm @@ -0,0 +1,36 @@ + + + + Функция DSUM (БДСУММ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSUM (БДСУММ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSUM - это одна из функций для работы с базами данных. Суммирует числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DSUM:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DSUM(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DSUM,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DSUM,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DSUM

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dvar.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dvar.htm new file mode 100644 index 000000000..c71a65e8c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dvar.htm @@ -0,0 +1,36 @@ + + + + Функция DVAR (БДДИСП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DVAR (БДДИСП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DVAR - это одна из функций для работы с базами данных. Оценивает дисперсию генеральной совокупности по выборке, используя отвечающие соответствующие заданным условиям числа в поле (столбце) записей списка или базы данных.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DVAR:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DVAR(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DVAR,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DVAR,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DVAR

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/dvarp.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dvarp.htm new file mode 100644 index 000000000..dcba33519 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/dvarp.htm @@ -0,0 +1,36 @@ + + + + Функция DVARP (БДДИСПП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DVARP (БДДИСПП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DVARP - это одна из функций для работы с базами данных. Вычисляет дисперсию генеральной совокупности, используя числа в поле (столбце) записей списка или базы данных, которые удовлетворяют заданным условиям.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции DVARP:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DVARP(database, field, criteria)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database - диапазон ячеек, составляющих базу данных. Должен содержать заголовки столбцов в первой строке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          field - аргумент, определяющий, какое поле (то есть столбец) надо использовать. Этот аргумент можно задать как номер нужного столбца или как заголовок столбца, заключенный в кавычки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria - диапазон ячеек, содержащих условия. Должен содержать название хотя бы одного поля (заголовок столбца) и хотя бы одну расположенную под ним ячейку, в которой задается условие, применяемое к этому полю в базе данных. Диапазон ячеек criteria не должен перекрывать диапазон database.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию DVARP,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Database,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции DVARP,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция DVARP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/ecma-ceiling.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/ecma-ceiling.htm new file mode 100644 index 000000000..a9ac8801c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/ecma-ceiling.htm @@ -0,0 +1,36 @@ + + + + Функция ECMA.CEILING (ECMA.ОКРВВЕРХ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ECMA.CEILING (ECMA.ОКРВВЕРХ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ECMA.CEILING - это одна из математических и тригонометрических функций. Используется, чтобы округлить число в большую сторону до ближайшего числа, кратного заданной значимости. Отрицательные числа округляются в сторону нуля.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции ECMA.CEILING:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ECMA.CEILING(x, significance)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          x - число, которое требуется округлить,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          significance - величина, до кратного которой требуется округлить число.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти аргументы - числовые значения, введенные вручную или находящиеся в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию ECMA.CEILING,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Математические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции ECMA.CEILING,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ECMA.CEILING

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/erf-precise.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/erf-precise.htm new file mode 100644 index 000000000..f25f1dac5 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/erf-precise.htm @@ -0,0 +1,35 @@ + + + + Функция ERF.PRECISE (ФОШ.ТОЧН) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ERF.PRECISE (ФОШ.ТОЧН)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ERF.PRECISE - это одна из инженерных функций. Возвращает функцию ошибки, проинтегрированную в пределах от 0 до заданного нижнего предела.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции ERF.PRECISE:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ERF.PRECISE(x)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          x - это нижний предел интегрирования.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Числовое значение может быть введенно вручную или находиться в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию ERF.PRECISE,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции ERF.PRECISE,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемый аргумент,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ERF.PRECISE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/erfc-precise.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/erfc-precise.htm new file mode 100644 index 000000000..ed3714cd4 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/erfc-precise.htm @@ -0,0 +1,33 @@ + + + + Функция ERFC.PRECISE (ДФОШ.ТОЧН) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ERFC.PRECISE (ДФОШ.ТОЧН)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ERFC.PRECISE - это одна из инженерных функций. Возвращает дополнительную функцию ФОШ, проинтегрированную в пределах от заданного нижнего предела до бесконечности.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции ERFC.PRECISE:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ERFC.PRECISE(x)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где x - это нижний предел интегрирования. Значение может быть введенно вручную или находиться в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию ERFC.PRECISE,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Инженерные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции ERFC.PRECISE,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемый аргумент,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ERFC.PRECISE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/forecast-linear.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/forecast-linear.htm new file mode 100644 index 000000000..e0af48ada --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/forecast-linear.htm @@ -0,0 +1,36 @@ + + + + Функция FORECAST.LINEAR (ПРЕДСКАЗ.ЛИНЕЙН) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция FORECAST.LINEAR (ПРЕДСКАЗ.ЛИНЕЙН)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция FORECAST.LINEAR - это одна из статистических функций. Вычисляет или предсказывает будущее значение по существующим значениям. Предсказываемое значение - это значение y, соответствующее заданному значению x. Значения x и y известны; новое значение предсказывается с использованием линейной регрессии.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции FORECAST.LINEAR:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FORECAST.LINEAR(x, known_y's, known_x's)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          x - это значение x, для которого требуется предсказать новое значение y; числовое значение, введенное вручную или находящееся в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          known_y's - массив известных значений y.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          known_x's - массив известных значений x.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию FORECAST.LINEAR,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции FORECAST.LINEAR,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция FORECAST.LINEAR

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/isformula.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/isformula.htm new file mode 100644 index 000000000..54a365f88 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/isformula.htm @@ -0,0 +1,33 @@ + + + + Функция ISFORMULA (ЕФОРМУЛА) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ISFORMULA (ЕФОРМУЛА)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ISFORMULA - это одна из информационных функций. Проверяет, имеется ли ссылка на ячейку с формулой. Если ячейка содержит формулу, функция возвращает значение TRUE (ИСТИНА), в противном случае функция возвращает значение FALSE (ЛОЖЬ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции ISFORMULA:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ISFORMULA(value)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где value - это ссылка на ячейку.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию ISFORMULA,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Информационные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции ISFORMULA,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемый аргумент,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ISFORMULA

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/isoweeknum.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/isoweeknum.htm new file mode 100644 index 000000000..4c193628f --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/isoweeknum.htm @@ -0,0 +1,35 @@ + + + + Функция ISOWEEKNUM (НОМНЕДЕЛИ.ISO) + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ISOWEEKNUM (НОМНЕДЕЛИ.ISO)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ISOWEEKNUM - это одна из функций даты и времени. Возвращает номер недели в году для определенной даты в соответствии со стандартами ISO (число от 1 до 54).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции ISOWEEKNUM:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ISOWEEKNUM(date)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          date - дата, для которой требуется найти номер недели в соответствии со стандартами ISO. Может быть ссылкой на ячейку, содержащей дату, или датой, возвращаемой функцией Date или другой функцией даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию ISOWEEKNUM,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Дата и время,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции ISOWEEKNUM,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемый аргумент,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция ISOWEEKNUM

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/maxifs.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/maxifs.htm new file mode 100644 index 000000000..7e4665209 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/maxifs.htm @@ -0,0 +1,37 @@ + + + + Функция MAXIFS (МАКСЕСЛИ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MAXIFS (МАКСЕСЛИ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MAXIFS - это одна из статистических функций. Возвращает максимальное значение из заданных определенными условиями или критериями ячеек.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции MAXIFS:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MAXIFS(max_range, criteria_range1, criteria1 [, criteria_range2, criteria2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          max_range - диапазон ячеек, для которого определяется максимальное значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria_range1 - первый выбранный диапазон ячеек, к которому применяется условие criteria1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria1 - первое условие, которое должно выполняться. Оно применяется к диапазону criteria_range1 и определяет, какие ячейки в диапазоне max_range будут оцениваться как имеющие максимальное значение. Это значение, введенное вручную или находящееся в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria_range2, criteria2, ... - дополнительные диапазоны ячеек и соответствующие условия. Это необязательные аргументы.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Примечание: при указании условий можно использовать подстановочные знаки. Вопросительный знак "?" может замещать любой отдельный символ, а звездочку "*" можно использовать вместо любого количества символов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию MAXIFS,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции MAXIFS,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MAXIFS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/minifs.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/minifs.htm new file mode 100644 index 000000000..de860644a --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/minifs.htm @@ -0,0 +1,37 @@ + + + + Функция MINIFS (МИНЕСЛИ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MINIFS (МИНЕСЛИ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MINIFS - это одна из статистических функций. Возвращает минимальное значение из заданных определенными условиями или критериями ячеек.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции MINIFS:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MINIFS(min_range, criteria_range1, criteria1 [, criteria_range2, criteria2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          min_range - диапазон ячеек, для которого определяется минимальное значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria_range1 - первый выбранный диапазон ячеек, к которому применяется условие criteria1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria1 - первое условие, которое должно выполняться. Оно применяется к диапазону criteria_range1 и определяет, какие ячейки в диапазоне min_range будут оцениваться как имеющие минимальное значение. Это значение, введенное вручную или находящееся в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          criteria_range2, criteria2, ... - дополнительные диапазоны ячеек и соответствующие условия. Это необязательные аргументы.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Примечание: при указании условий можно использовать подстановочные знаки. Вопросительный знак "?" может замещать любой отдельный символ, а звездочку "*" можно использовать вместо любого количества символов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию MINIFS,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции MINIFS,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MINIFS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/mode-mult.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/mode-mult.htm new file mode 100644 index 000000000..b73643ca5 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/mode-mult.htm @@ -0,0 +1,34 @@ + + + + Функция MODE.MULT (МОДА.НСК) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MODE.MULT (МОДА.НСК)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MODE.MULT - это одна из статистических функций. Возвращает наиболее часто встречающееся (повторяющееся) значение в массиве или диапазоне данных.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции MODE.MULT:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MODE.MULT(number1, [, number2],...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где number1, number2... - это до 255 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Примечание: если в списке значений нет повторяющегося значения, функция возвращает ошибку #VALUE!.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию MODE.MULT,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции MODE.MULT,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MODE.MULT

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/mode-sngl.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/mode-sngl.htm new file mode 100644 index 000000000..83dbe03a6 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/mode-sngl.htm @@ -0,0 +1,34 @@ + + + + Функция MODE.SNGL (МОДА.ОДН) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MODE.SNGL (МОДА.ОДН)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MODE.SNGL - это одна из статистических функций. Возвращает наиболее часто встречающееся или повторяющееся значение в массиве или интервале данных.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции MODE.SNGL:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MODE.SNGL(number1, [, number2],...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где number1, number2... - это до 255 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Примечание: если в списке значений нет повторяющегося значения, функция возвращает ошибку #VALUE!.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию MODE.SNGL,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции MODE.SNGL,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция MODE.SNGL

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/negbinom-dist.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/negbinom-dist.htm new file mode 100644 index 000000000..be5d12f78 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/negbinom-dist.htm @@ -0,0 +1,38 @@ + + + + Функция NEGBINOM.DIST (ОТРБИНОМ.РАСП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция NEGBINOM.DIST (ОТРБИНОМ.РАСП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция NEGBINOM.DIST - это одна из статистических функций. Возвращает отрицательное биномиальное распределение - вероятность возникновения определенного числа неудач до указанного количества успехов при заданной вероятности успеха.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции NEGBINOM.DIST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NEGBINOM.DIST(number-f, number-s, probability-s, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number-f - количество неудачных испытаний; числовое значение, большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          number-s - пороговое значение числа успешных испытаний; числовое значение, большее или равное 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          probability-s - вероятность успеха каждого испытания; числовое значение больше 0, но меньше 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          cumulative логическое значение (TRUE (ИСТИНА) или FALSE (ЛОЖЬ)), определяющее форму функции. Если этот аргумент имеет значение TRUE (ИСТИНА), возвращается интегральная функция распределения. Если этот аргумент имеет значение FALSE (ЛОЖЬ), возвращается функция плотности распределения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Эти числовые значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию NEGBINOM.DIST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции NEGBINOM.DIST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы вручную, разделяя их запятыми, или выделите диапазон ячеек мышью,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция NEGBINOM.DIST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/networkdays-intl.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/networkdays-intl.htm new file mode 100644 index 000000000..99540e015 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/networkdays-intl.htm @@ -0,0 +1,101 @@ + + + + Функция NETWORKDAYS.INTL (ЧИСТРАБДНИ.МЕЖД) + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция NETWORKDAYS.INTL (ЧИСТРАБДНИ.МЕЖД)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция NETWORKDAYS.INTL - это одна из функций даты и времени. Возвращает количество рабочих дней между двумя датами с использованием параметров, определяющих, сколько в неделе выходных и какие дни являются выходными.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции NETWORKDAYS.INTL:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NETWORKDAYS.INTL(start_date, end_date, [, weekend], [, holidays])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          start_date - первая дата периода, введенная с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          end_date - последняя дата периода, введенная с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          weekend - необязательный аргумент, заданный номером выходного дня или строкой, определяющей, какие дни являются выходными. Допустимые номера приведены в таблице ниже.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          НомерВыходные дни
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1 или опущенСуббота, воскресенье
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2Воскресенье, понедельник
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3Понедельник, вторник
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4Вторник, среда
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5Среда, четверг
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6Четверг, пятница
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7Пятница, суббота
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11Только воскресенье
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12Только понедельник
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          13Только вторник
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          14Только среда
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          15Только четверг
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          16Только пятница
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          17Только суббота
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Строка, определяющая выходные дни, должна содержать 7 символов. Каждый символ обозначает день недели, начиная с понедельника. Значение 0 представляет рабочий день, значение 1 представляет нерабочий день. Например, "0000011" означает, что выходными днями являются суббота и воскресенье. Строка "1111111" является недействительной.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          holidays - необязательный аргумент, определяющий, какие даты, помимо заданных аргументом weekend, являются нерабочими днями. Значения могут быть заданы с помощью функции Date или другой функции даты и времени или являться ссылкой на диапазон ячеек, содержащих даты.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию NETWORKDAYS.INTL,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          5. выберите из списка группу функций Дата и время,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          7. щелкните по функции NETWORKDAYS.INTL,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Функция NETWORKDAYS.INTL

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/networkdays.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/networkdays.htm index 73d331c49..e60aaaba7 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/Functions/networkdays.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/networkdays.htm @@ -14,9 +14,9 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Синтаксис функции NETWORKDAYS:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          NETWORKDAYS(start-date, end-date [,holydays])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          start-date - число, представляющее первую дату периода, введенное с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          end-date - число, представляющее последнюю дату периода, введенное с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          holydays - необязательные аргументы, введенные вручную в виде списка порядковых номеров, или находящиеся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          start-date - первая дата периода, введенная с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          end-date - последняя дата периода, введенная с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          holidays - необязательный аргумент, указывающий, какие даты, кроме выходных, являются нерабочими. Их можно ввести с помощью функции Date или другой функции даты и времени или указать ссылку на диапазон ячеек, содержащих даты.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Чтобы применить функцию NETWORKDAYS,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2. diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-dist.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-dist.htm new file mode 100644 index 000000000..750eb1012 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-dist.htm @@ -0,0 +1,38 @@ + + + + Функция NORM.DIST (НОРМ.РАСП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.DIST (НОРМ.РАСП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.DIST - это одна из статистических функций. Возвращает нормальную функцию распределения для указанного среднего и стандартного отклонения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции NORM.DIST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NORM.DIST(x, mean, standard-dev, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            x - значение, для которого требуется вычислить распределение; любое числовое значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mean - среднее арифметическое распределения; любое числовое значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            standard-dev - стандартное отклонение распределения; числовое значение больше 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            cumulative - форма функции; логическое значение: TRUE (ИСТИНА) или FALSE (ЛОЖЬ). Если этот аргумент имеет значение TRUE (ИСТИНА), возвращается интегральная функция распределения. Если этот аргумент имеет значение FALSE (ЛОЖЬ), возвращается весовая функция распределения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию NORM.DIST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции NORM.DIST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.DIST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-inv.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-inv.htm new file mode 100644 index 000000000..f000cac93 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-inv.htm @@ -0,0 +1,37 @@ + + + + Функция NORM.INV (НОРМ.ОБР) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.INV (НОРМ.ОБР)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.INV - это одна из статистических функций. Возвращает обратное нормальное распределение для указанного среднего и стандартного отклонения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции NORM.INV:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NORM.INV(probability, mean, standard-dev)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            probability - вероятность, соответствующая нормальному распределению; числовое значение больше 0, но меньше 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mean - среднее арифметическое распределения; любое числовое значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            standard-dev - стандартное отклонение распределения; числовое значение больше 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Эти числовые значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию NORM.INV,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции NORM.INV,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.INV

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-s-dist.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-s-dist.htm new file mode 100644 index 000000000..3ce73a95d --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-s-dist.htm @@ -0,0 +1,35 @@ + + + + Функция NORM.S.DIST (НОРМ.СТ.РАСП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.S.DIST (НОРМ.СТ.РАСП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.S.DIST - это одна из статистических функций. Возвращает стандартное нормальное интегральное распределение. Это распределение имеет среднее, равное нулю, и стандартное отклонение, равное единице.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции NORM.S.DIST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NORM.S.DIST(z, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            z - значение, для которого требуется вычислить распределение; числовое значение, введенное вручную или находящееся в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            cumulative - форма функции; логическое значение: TRUE (ИСТИНА) или FALSE (ЛОЖЬ). Если этот аргумент имеет значение TRUE (ИСТИНА), возвращается интегральная функция распределения. Если этот аргумент имеет значение FALSE (ЛОЖЬ), возвращается весовая функция распределения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию NORM.S.DIST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции NORM.S.DIST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.S.DIST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-s-inv.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-s-inv.htm new file mode 100644 index 000000000..90c3df736 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/norm-s-inv.htm @@ -0,0 +1,33 @@ + + + + Функция NORM.S.INV (НОРМ.СТ.ОБР) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.S.INV (НОРМ.СТ.ОБР)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.S.INV - это одна из статистических функций. Возвращает обратное значение стандартного нормального распределения. Это распределение имеет среднее, равное нулю, и стандартное отклонение, равное единице.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции NORM.S.INV:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NORM.S.INV(probability)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где probability - это числовое значение больше 0, но меньше 1, введенное вручную или находящееся в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию NORM.S.INV,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции NORM.S.INV,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемый аргумент,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция NORM.S.INV

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/permutationa.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/permutationa.htm new file mode 100644 index 000000000..53c4e4a97 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/permutationa.htm @@ -0,0 +1,36 @@ + + + + Функция PERMUTATIONA (ПЕРЕСТА) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция PERMUTATIONA (ПЕРЕСТА)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция PERMUTATIONA - это одна из статистических функций. Возвращает количество перестановок для заданного числа объектов (с повторами), которые можно выбрать из общего числа объектов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции PERMUTATIONA:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PERMUTATIONA(number, number-chosen)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            number - число элементов, числовое значение большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            number-chosen - количество элементов в каждой перестановке, числовое значение большее или равное 0, но меньшее, чем значение аргумента number.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Эти числовые значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию PERMUTATIONA,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции PERMUTATIONA,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция PERMUTATIONA

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/phi.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/phi.htm new file mode 100644 index 000000000..145e4849b --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/phi.htm @@ -0,0 +1,35 @@ + + + + Функция PHI (ФИ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция PHI (ФИ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция PHI - это одна из статистических функций. Возвращает значение функции плотности для стандартного нормального распределения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции PHI:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PHI(x)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            x число, для которого требуется вычислить плотность стандартного нормального распределения; любое числовое значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Это числовое значение можно ввести вручную или использовать в качестве аргумента ссылку на ячейку.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию PHI,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции PHI,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемый аргумент,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция PHI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/poisson-dist.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/poisson-dist.htm new file mode 100644 index 000000000..9ba354940 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/poisson-dist.htm @@ -0,0 +1,37 @@ + + + + Функция POISSON.DIST (ПУАССОН.РАСП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция POISSON.DIST (ПУАССОН.РАСП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция POISSON.DIST - это одна из статистических функций. Возвращает распределение Пуассона. Обычное применение распределения Пуассона состоит в предсказании количества событий, происходящих за определенное время, например количества машин, появляющихся на площади за одну минуту.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции POISSON.DIST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            POISSON.DIST(x, mean, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            x - количество событий; числовое значение больше 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mean - ожидаемое числовое значение; должно быть больше 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            cumulative - форма функции. Это логическое значение: TRUE (ИСТИНА) или FALSE (ЛОЖЬ). Если аргумент cumulative имеет значение TRUE (ИСТИНА), возвращается интегральное распределение Пуассона. Если этот аргумент имеет значение FALSE (ЛОЖЬ), возвращается весовая функция распределения Пуассона.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию POISSON.DIST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции POISSON.DIST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция POISSON.DIST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/quartile-exc.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/quartile-exc.htm new file mode 100644 index 000000000..1f57de182 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/quartile-exc.htm @@ -0,0 +1,53 @@ + + + + Функция QUARTILE.EXC (КВАРТИЛЬ.ИСКЛ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция QUARTILE.EXC (КВАРТИЛЬ.ИСКЛ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция QUARTILE.EXC - это одна из статистических функций. Возвращает квартиль набора данных на основе значений процентили от 0 до 1, исключая эти числа.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции QUARTILE.EXC:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            QUARTILE.EXC(array, quart)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            array - выбранный диапазон ячеек для анализа,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            quart - значение квартиля, которое требуется вернуть; числовое значение, введенное вручную или находящееся в ячейке, на которую дается ссылка. Квартиль может иметь одно из следующих значений:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Числовое значениеКвартиль
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1Первый квартиль (25-й процентиль)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2Второй квартиль (50-й процентиль)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3Третий квартиль (75-й процентиль)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию QUARTILE.EXC,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции QUARTILE.EXC,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция QUARTILE.EXC

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/quartile-inc.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/quartile-inc.htm new file mode 100644 index 000000000..f5a184bd2 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/quartile-inc.htm @@ -0,0 +1,62 @@ + + + + Функция QUARTILE.INC (КВАРТИЛЬ.ВКЛ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция QUARTILE.INC (КВАРТИЛЬ.ВКЛ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция QUARTILE.INC - это одна из статистических функций. Возвращает квартиль набора данных на основе значений процентили от 0 до 1 (включительно).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции QUARTILE.INC:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            QUARTILE.INC(array, quart)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            array - выбранный диапазон ячеек для анализа,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            quart - значение квартиля, которое требуется вернуть; числовое значение, введенное вручную или находящееся в ячейке, на которую дается ссылка. Квартиль может иметь одно из следующих значений:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Числовое значениеКвартиль
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            0Минимальное значение в массиве данных
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1Первый квартиль (25-й процентиль)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2Второй квартиль (50-й процентиль)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3Третий квартиль (75-й процентиль)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4Максимальное значение в массиве данных
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию QUARTILE.INC,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции QUARTILE.INC,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция QUARTILE.INC

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/rri.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/rri.htm new file mode 100644 index 000000000..a4798c63e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/rri.htm @@ -0,0 +1,37 @@ + + + + Функция RRI (ЭКВ.СТАВКА) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция RRI (ЭКВ.СТАВКА)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция RRI - это одна из финансовых функций. Возвращает эквивалентную процентную ставку для роста инвестиции.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции RRI:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RRI(nper, pv, fv)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nper - количество периодов для инвестиций.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            pv - стоимость инвестиции на текущий момент.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            fv - стоимость инвестиции в будущем.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Числовые значения могут быть введены вручную или находиться в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию RRI,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Финансовые,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции RRI,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция RRI

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/sheet.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/sheet.htm new file mode 100644 index 000000000..b527456f5 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/sheet.htm @@ -0,0 +1,33 @@ + + + + Функция SHEET (ЛИСТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SHEET (ЛИСТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SHEET - это одна из информационных функций. Возвращает номер листа, на который имеется ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции SHEET:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SHEET(value)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где value - это название листа или ссылка, для которой необходимо установить номер листа. Если аргумент value опущен, возвращается номер текущего листа.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию SHEET,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Информационные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции SHEET,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемый аргумент,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SHEET

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/sheets.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/sheets.htm new file mode 100644 index 000000000..e64f00f65 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/sheets.htm @@ -0,0 +1,33 @@ + + + + Функция SHEETS (ЛИСТЫ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SHEETS (ЛИСТЫ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SHEETS - это одна из информационных функций. Возвращает количество листов в ссылке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции SHEETS:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SHEETS(reference)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где reference - это ссылка, для которой необходимо знать количество листов. Если аргумент reference опущен, возвращается количество листов текущей книги.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию SHEETS,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Информационные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции SHEETS,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемый аргумент,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SHEETS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/skew-p.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/skew-p.htm new file mode 100644 index 000000000..4a3db78f7 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/skew-p.htm @@ -0,0 +1,34 @@ + + + + Функция SKEW.P (СКОС.Г) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SKEW.P (СКОС.Г)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SKEW.P - это одна из статистических функций. Возвращает асимметрию распределения на основе заполнения: характеристика степени асимметрии распределения относительно его среднего.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции SKEW.P:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SKEW.P(number-1 [, number 2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где number-1(2) - это до 254 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Примечание: если аргумент, заданный в виде ссылки, содержит текст, логические значения или пустые ячейки, эти значения игнорируются, но ячейки с нулевыми значениями учитываются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию SKEW.P,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции SKEW.P,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми, или выделите мышью диапазон ячеек,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция SKEW.P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev-p.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev-p.htm new file mode 100644 index 000000000..c2ebd0d27 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev-p.htm @@ -0,0 +1,34 @@ + + + + Функция STDEV.P (СТАНДОТКЛОН.Г) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция STDEV.P (СТАНДОТКЛОН.Г)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция STDEV.P - это одна из статистических функций. Вычисляет стандартное отклонение по генеральной совокупности, заданной аргументами. При этом логические значения и текст игнорируются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции STDEV.P:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            STDEV.P(number1 [, number2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где number-1(2) - это до 254 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Примечание: если аргумент, заданный в виде ссылки, содержит текст, логические значения или пустые ячейки, эти значения игнорируются, но ячейки с нулевыми значениями учитываются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию STDEV.P,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции STDEV.P,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми, или выделите мышью диапазон ячеек,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция STDEV.P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev-s.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev-s.htm new file mode 100644 index 000000000..ef623085c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev-s.htm @@ -0,0 +1,34 @@ + + + + Функция STDEV.S (СТАНДОТКЛОН.В) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция STDEV.S (СТАНДОТКЛОН.В)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция STDEV.S - это одна из статистических функций. Оценивает стандартное отклонение по выборке. Логические значения и текст игнорируются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции STDEV.S:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            STDEV.S(number1 [, number2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где number-1(2) - это до 255 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Примечание: если аргумент, заданный в виде ссылки, содержит текст, логические значения или пустые ячейки, эти значения игнорируются, но ячейки с нулевыми значениями учитываются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию STDEV.S,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. щелкните по функции STDEV.S,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. введите требуемые аргументы, разделяя их запятыми, или выделите мышью диапазон ячеек,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция STDEV.S

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev.htm index 078e06018..f8e03dde7 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdev.htm @@ -12,7 +12,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Функция STDEV - это одна из статистических функций. Анализирует диапазон данных и возвращает стандартное отклонение по выборке, содержащей числа.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Синтаксис функции STDEV:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            STDEV(argument-list)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где argument-list (список значений) - это до 30 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            где argument-list (список значений) - это до 255 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Примечание: если аргумент является ссылкой и содержит текст, логические значения или пустые ячейки, эти значения игнорируются, но ячейки с нулевыми значениями учитываются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы применить функцию STDEV,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdeva.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdeva.htm index 7b7db9084..edf761629 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdeva.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdeva.htm @@ -12,7 +12,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Функция STDEVA - это одна из статистических функций. Анализирует диапазон данных и возвращает стандартное отклонение по выборке, содержащей числа, текст и логические значения (TRUE или FALSE). Текст и логические значения FALSE (ЛОЖЬ) интерпретируются как 0, а логические значения TRUE (ИСТИНА) - как 1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Синтаксис функции STDEVA:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              STDEVA(argument-list)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              где argument-list (список значений) - это до 30 значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              где argument-list (список значений) - это до 255 значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Чтобы применить функцию STDEVA,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2. diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdevp.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdevp.htm index f46cc4876..11842b93d 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdevp.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdevp.htm @@ -12,7 +12,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Функция STDEVP - это одна из статистических функций. Используется для анализа диапазона данных и возвращает стандартное отклонение по всей совокупности значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Синтаксис функции STDEVP:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                STDEVP(argument-list)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                где argument-list (список значений) - это до 30 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                где argument-list (список значений) - это до 255 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Чтобы применить функцию STDEVP,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdevpa.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdevpa.htm index b184fecd3..f96ca1849 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdevpa.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/stdevpa.htm @@ -12,7 +12,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция STDEVPA - это одна из статистических функций. Используется для анализа диапазона данных и возвращает стандартное отклонение по всей совокупности значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции STDEVPA:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  STDEVPA(argument-list)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где argument-list (список значений) - это до 30 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где argument-list (список значений) - это до 255 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Примечание: текстовые значения и значения FALSE (ЛОЖНО) принимаются равными 0, значения TRUE (ИСТИННО) принимаются равными 1, пустые ячейки игнорируются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/switch.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/switch.htm new file mode 100644 index 000000000..ee6deb1a7 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/switch.htm @@ -0,0 +1,38 @@ + + + + Функция SWITCH (ПЕРЕКЛЮЧ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция SWITCH (ПЕРЕКЛЮЧ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция SWITCH - это одна из логических функций. Вычисляет значение (которое называют выражением) на основе списка значений и возвращает результат, соответствующий первому совпадающему значению. Если совпадения не обнаружены, может быть возвращено необязательное стандартное значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции SWITCH:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SWITCH(expression, value1, result1 [, [default or value2] [, [result2]], ...[default or value3, result3]])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expression - это значение, которое сравнивается со значениями value1 ...value126.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  value1 ...value126 - это значение, с которым сравнивается аргумент expression.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  result1 ...result126 - это результат, возвращаемый, если аргумент value1 ...value126 совпадает с аргументом expression.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  default - это результат, возвращаемый, если совпадения не обнаружены. Если аргумент default не задан и совпадений не обнаружено, функция возвращает ошибку #N/A.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Примечание: можно ввести до 254 аргументов, то есть до 126 пар значений и результатов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию SWITCH,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Логические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции SWITCH,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция SWITCH

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/t-test.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/t-test.htm new file mode 100644 index 000000000..4e4c7a602 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/t-test.htm @@ -0,0 +1,56 @@ + + + + Функция T.TEST (СТЬЮДЕНТ.ТЕСТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция T.TEST (СТЬЮДЕНТ.ТЕСТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция T.TEST - это одна из статистических функций. Возвращает вероятность, соответствующую t-тесту Стьюдента. Функция T.TEST позволяет определить вероятность того, что две выборки взяты из генеральных совокупностей, которые имеют одно и то же среднее.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции T.TEST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  T.TEST(array1, array2, tails, type)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array1 - первый диапазон числовых значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array2 - второй диапазон числовых значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tails - число хвостов распределения. Если значение этого аргумента равно 1, используется одностороннее распределение. Если значение этого аргумента равно 2, используется двустороннее распределение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type - числовое значение, определяющее вид выполняемого t-теста. Может использоваться одно из следующих значений:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Числовое значениеВид t-теста
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1Парный
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2Двухвыборочный с равными дисперсиями (гомоскедастический)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3Двухвыборочный с неравными дисперсиями (гетероскедастический)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию T.TEST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции T.TEST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми, или выделите мышью диапазон ячеек,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция T.TEST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/textjoin.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/textjoin.htm new file mode 100644 index 000000000..d5155c1d1 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/textjoin.htm @@ -0,0 +1,36 @@ + + + + Функция TEXTJOIN (ОБЪЕДИНИТЬ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TEXTJOIN (ОБЪЕДИНИТЬ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TEXTJOIN - это одна из функций для работы с текстом и данными. Объединяет текст из нескольких диапазонов и (или) строк, вставляя между текстовыми значениями указанный разделитель. Если в качестве разделителя используется пустая текстовая строка, функция эффективно объединит диапазоны. Эта функция аналогична функции CONCAT, но разница заключается в том, что функция CONCAT не принимает разделитель.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции TEXTJOIN:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TEXTJOIN(delimiter, ignore_empty, text1 [, text2], …)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  delimiter - разделитель, который надо вставить между текстовыми значениями. Может быть задан в виде текстовой строки, заключенной в двойные кавычки (например, "," (запятая), " " (пробел), "\" (обратный слэш) и так далее) или в виде ссылки на ячейку или диапазон ячеек.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ignore_empty - логическое значение, определяющее, должны ли игнорироваться пустые ячейки. Если задано значение TRUE, пустые ячейки игнорируются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  text1(2) - это до 252 значений данных. Каждое значение может быть текстовой строкой или ссылкой на диапазон ячеек.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию TEXTJOIN,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Текст и данные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции TEXTJOIN,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TEXTJOIN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/trimmean.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/trimmean.htm new file mode 100644 index 000000000..7e934ba71 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/trimmean.htm @@ -0,0 +1,36 @@ + + + + Функция TRIMMEAN (УРЕЗСРЕДНЕЕ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TRIMMEAN (УРЕЗСРЕДНЕЕ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TRIMMEAN - это одна из статистических функций. Возвращает среднее внутренности множества данных. Функция TRIMMEAN вычисляет среднее, отбрасывания заданный процент данных с экстремальными значениями.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции TRIMMEAN:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TRIMMEAN(array, percent)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array - диапазон усекаемых и усредняемых числовых значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  percent - доля точек данных, исключаемых из вычислений. Числовое значение, большее или равное 0, но меньшее, чем 1. Количество исключаемых точек данных округляется в меньшую сторону до ближайшего целого, кратного 2. Например, если аргумент array содержит 30 значений, а аргумент percent равен 0.1, то 10 процентов от 30 точек равняется 3. Это значение округляется в меньшую сторону до 2, следовательно, исключается по одному значению с каждого конца множества: 1 с начала и 1 с конца множества.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию TRIMMEAN,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции TRIMMEAN,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми, или выделите мышью диапазон ячеек,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TRIMMEAN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/ttest.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/ttest.htm new file mode 100644 index 000000000..31c7920a4 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/ttest.htm @@ -0,0 +1,56 @@ + + + + Функция TTEST (ТТЕСТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TTEST (ТТЕСТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TTEST - это одна из статистических функций. Возвращает вероятность, соответствующую критерию Стьюдента. Функция TTEST позволяет определить вероятность того, что две выборки взяты из генеральных совокупностей, которые имеют одно и то же среднее.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции TTEST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TTEST(array1, array2, tails, type)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array1 - первый диапазон числовых значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  array2 - второй диапазон числовых значений.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tails - число хвостов распределения. Если значение этого аргумента равно 1, используется одностороннее распределение. Если значение этого аргумента равно 2, используется двустороннее распределение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type - числовое значение, определяющее вид выполняемого t-теста. Может использоваться одно из следующих значений:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Числовое значениеВид t-теста
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1Парный
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2Двухвыборочный с равными дисперсиями (гомоскедастический)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3Двухвыборочный с неравными дисперсиями (гетероскедастический)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию TTEST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции TTEST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми, или выделите мышью диапазон ячеек,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция TTEST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/unichar.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/unichar.htm new file mode 100644 index 000000000..1be96735e --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/unichar.htm @@ -0,0 +1,35 @@ + + + + Функция UNICHAR (ЮНИСИМВ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция UNICHAR (ЮНИСИМВ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция UNICHAR - это одна из функций для работы с текстом и данными. Возвращает символ Юникод, на который ссылается заданное числовое значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции UNICHAR:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNICHAR(number)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где number - это число Юникод, которое представляет символ. Это значение может быть введено вручную или находиться в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию UNICHAR,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Текст и данные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции UNICHAR,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. + введите требуемый аргумент, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция UNICHAR

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/unicode.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/unicode.htm new file mode 100644 index 000000000..4147fe667 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/unicode.htm @@ -0,0 +1,35 @@ + + + + Функция UNICODE + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция UNICODE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция UNICODE - это одна из функций для работы с текстом и данными. Возвращает число (кодовую страницу), которая соответствует первому символу текста.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции UNICODE:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UNICODE(text)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где text - это текстовая строка, начинающаяся с символа, для которого требуется получить значение Юникод. Это значение может быть введено вручную или находиться в ячейке, на которую дается ссылка.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию UNICODE,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Текст и данные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции UNICODE,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. + введите требуемый аргумент, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция UNICODE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/var-p.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/var-p.htm new file mode 100644 index 000000000..a9715e563 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/var-p.htm @@ -0,0 +1,34 @@ + + + + Функция VAR.P (ДИСП.Г) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция VAR.P (ДИСП.Г)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция VAR.P - это одна из статистических функций. Вычисляет дисперсию для генеральной совокупности. Логические значения и текст игнорируются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции VAR.P:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VAR.P(number1 [, number2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где number1(2) - это до 254 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Примечание: пустые ячейки, логические значения, текст и значения ошибок в составе массива игнорируются. Если текстовые представления чисел и логические значения введены непосредственно в функцию, они интерпретируются как числовые значения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию VAR.P,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции VAR.P,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми, или выделите мышью диапазон ячеек,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция VAR.P

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/var-s.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/var-s.htm new file mode 100644 index 000000000..69d089e19 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/var-s.htm @@ -0,0 +1,34 @@ + + + + Функция VAR.S (ДИСП.В) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция VAR.S (ДИСП.В)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция VAR.S - это одна из статистических функций. Оценивает дисперсию по выборке. Логические значения и текст игнорируются.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции VAR.S:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  VAR.S(number1 [, number2], ...)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где number1(2) - это до 254 числовых значений, введенных вручную или находящихся в ячейках, на которые даются ссылки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Примечание: пустые ячейки, логические значения, текст и значения ошибок в составе массива игнорируются. Если текстовые представления чисел и логические значения введены непосредственно в функцию, они интерпретируются как числовые значения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию VAR.S,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции VAR.S,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми, или выделите мышью диапазон ячеек,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция VAR.S

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/weibull-dist.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/weibull-dist.htm new file mode 100644 index 000000000..611a0a30a --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/weibull-dist.htm @@ -0,0 +1,38 @@ + + + + Функция WEIBULL.DIST (ВЕЙБУЛЛ.РАСП) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция WEIBULL.DIST (ВЕЙБУЛЛ.РАСП)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция WEIBULL.DIST - это одна из статистических функций. Возвращает распределение Вейбулла. Это распределение используется при анализе надежности, например для вычисления среднего времени наработки на отказ какого-либо устройства.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции WEIBULL.DIST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WEIBULL(x, alpha, beta, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  x - значение, для которого вычисляется функция; числовое значение большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  alpha - первый параметр распределения, числовое значение больше 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  beta - второй параметр распределения, числовое значение больше 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  cumulative - форма функции. Это логическое значение: TRUE (ИСТИНА) или FALSE (ЛОЖЬ). Если этот аргумент имеет значение TRUE (ИСТИНА), возвращается интегральная функция распределения. Если этот аргумент имеет значение FALSE (ЛОЖЬ), возвращается функция плотности распределения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию WEIBULL.DIST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции WEIBULL.DIST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WEIBULL.DIST Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/weibull.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/weibull.htm new file mode 100644 index 000000000..5b8d0f37c --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/weibull.htm @@ -0,0 +1,38 @@ + + + + Функция WEIBULL (ВЕЙБУЛЛ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция WEIBULL (ВЕЙБУЛЛ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция WEIBULL - это одна из статистических функций. Возвращает распределение Вейбулла. Это распределение используется при анализе надежности, например для вычисления среднего времени наработки на отказ какого-либо устройства.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции WEIBULL:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WEIBULL(x, alpha, beta, cumulative)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  x - значение, для которого вычисляется функция; числовое значение большее или равное 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  alpha - первый параметр распределения, числовое значение больше 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  beta - второй параметр распределения, числовое значение больше 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  cumulative - форма функции. Это логическое значение: TRUE (ИСТИНА) или FALSE (ЛОЖЬ). Если этот аргумент имеет значение TRUE (ИСТИНА), возвращается интегральная функция распределения. Если этот аргумент имеет значение FALSE (ЛОЖЬ), возвращается функция плотности распределения.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию WEIBULL,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции WEIBULL,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция WEIBULL

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/workday-intl.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/workday-intl.htm new file mode 100644 index 000000000..5b8699bf7 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/workday-intl.htm @@ -0,0 +1,101 @@ + + + + Функция WORKDAY.INTL (РАБДЕНЬ.МЕЖД) + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция WORKDAY.INTL (РАБДЕНЬ.МЕЖД)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция WORKDAY.INTL - это одна из функций даты и времени. Возвращает порядковый номер даты, отстоящей вперед или назад на заданное количество рабочих дней, с указанием настраиваемых параметров выходных, определяющих, сколько в неделе выходных дней и какие дни являются выходными.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции WORKDAY.INTL:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WORKDAY.INTL(start_date, days, [, weekend], [, holidays])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  start_date - первая дата периода, введенная с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  days - количество рабочих дней до или после заданной начальной даты. Если аргумент days имеет отрицательное значение, функция возвращает дату, идущую перед заданной начальной датой. Если аргумент days имеет положительное значение, функция возвращает дату, идущую после заданной начальной даты.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  weekend - необязательный аргумент, заданный номером выходного дня или строкой, определяющей, какие дни являются выходными. Допустимые номера приведены в таблице ниже.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  НомерВыходные дни
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1 или опущенСуббота, воскресенье
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2Воскресенье, понедельник
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3Понедельник, вторник
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4Вторник, среда
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5Среда, четверг
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6Четверг, пятница
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7Пятница, суббота
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11Только воскресенье
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12Только понедельник
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  13Только вторник
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  14Только среда
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  15Только четверг
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  16Только пятница
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  17Только суббота
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Строка, определяющая выходные дни, должна содержать 7 символов. Каждый символ обозначает день недели, начиная с понедельника. Значение 0 представляет рабочий день, значение 1 представляет нерабочий день. Например, "0000011" означает, что выходными днями являются суббота и воскресенье. Строка "1111111" является недействительной.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  holidays - необязательный аргумент, определяющий, какие даты, помимо заданных аргументом weekend, являются нерабочими днями. Значения могут быть заданы с помощью функции Date или другой функции даты и времени или являться ссылкой на диапазон ячеек, содержащих даты.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию WORKDAY.INTL,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. выберите из списка группу функций Дата и время,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7. щелкните по функции WORKDAY.INTL,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Функция WORKDAY.INTL

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/workday.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/workday.htm index 4fac5c416..9d4096778 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/Functions/workday.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/workday.htm @@ -14,10 +14,9 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Синтаксис функции WORKDAY:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WORKDAY(start-day, day-offset [,holydays])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  start-day (начальная дата) - число, представляющее первую дату периода, введенное с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  day-offset (смещение в днях) - количество рабочих дней до или после начальной даты. Если аргумент day-offset имеет отрицательное значение, функция WORKDAY возвращает порядковый номер даты, идущей перед заданной начальной датой. Если аргумент day-offset имеет положительное значение, функция WORKDAY возвращает порядковый номер даты, идущей после заданной начальной даты.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  holydays - нерабочие дни. Необязательный аргумент.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  start-day (начальная дата) - первая дата периода, введенная с помощью функции Date или другой функции даты и времени.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  day-offset (смещение в днях) - количество рабочих дней до или после начальной даты. Если аргумент day-offset имеет отрицательное значение, функция WORKDAY возвращает дату, идущую перед заданной начальной датой. Если аргумент day-offset имеет положительное значение, функция WORKDAY возвращает дату, идущую после заданной начальной даты.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  holidays - необязательный аргумент, указывающий, какие даты, кроме выходных, являются нерабочими. Их можно ввести с помощью функции Date или другой функции даты и времени или указать ссылку на диапазон ячеек, содержащих даты.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Чтобы применить функцию WORKDAY,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/z-test.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/z-test.htm new file mode 100644 index 000000000..3748b0cb3 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/z-test.htm @@ -0,0 +1,38 @@ + + + + Функция Z.TEST (Z.ТЕСТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Функция Z.TEST (Z.ТЕСТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Функция Z.TEST - это одна из статистических функций. Возвращает одностороннее P-значение z-теста. Для заданного гипотетического среднего генеральной совокупности функция Z.TEST возвращает вероятность того, что среднее по выборке будет больше среднего значения набора рассмотренных данных (массива), то есть среднего значения наблюдаемой выборки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Синтаксис функции Z.TEST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Z.TEST(array, x [, sigma])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    array - диапазон числовых данных, с которыми сравнивается аргумент x.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    x - проверяемое значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    sigma - известное стандартное отклонение генеральной совокупности. Это необязательный аргумент. Если он опущен, используется стандартное отклонение выборки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Чтобы применить функцию Z.TEST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7. щелкните по функции Z.TEST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    10. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    11. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    12. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    13. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Функция Z.TEST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/Functions/ztest.htm b/apps/spreadsheeteditor/main/resources/help/ru/Functions/ztest.htm new file mode 100644 index 000000000..68244a431 --- /dev/null +++ b/apps/spreadsheeteditor/main/resources/help/ru/Functions/ztest.htm @@ -0,0 +1,37 @@ + + + + Функция ZTEST (ZТЕСТ) + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Функция ZTEST (ZТЕСТ)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Функция ZTEST - это одна из статистических функций. Возвращает одностороннее значение вероятности z-теста. Для заданного гипотетического среднего генеральной совокупности (μ0) функция ZTEST возвращает вероятность того, что выборочное среднее будет больше среднего значения множества рассмотренных данных (массива), называемого также средним значением наблюдаемой выборки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Синтаксис функции ZTEST:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ZTEST(array, x [, sigma])

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    где

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    array - диапазон числовых данных, с которыми сравнивается аргумент x.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    x - проверяемое значение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    sigma - известное стандартное отклонение генеральной совокупности. Это необязательный аргумент. Если он опущен, используется стандартное отклонение выборки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Эти значения можно ввести вручную или использовать в качестве аргументов ссылки на ячейки.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Чтобы применить функцию ZTEST,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1. выделите ячейку, в которой требуется отобразить результат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3. + щелкните по значку Вставить функцию Значок Вставить функцию, расположенному на верхней панели инструментов, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      или щелкните правой кнопкой мыши по выделенной ячейке и выберите в меню команду Вставить функцию, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      или щелкните по значку Значок Функция перед строкой формул, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5. выберите из списка группу функций Статистические,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    7. щелкните по функции ZTEST,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    8. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    9. введите требуемые аргументы, разделяя их запятыми,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    10. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    11. нажмите клавишу Enter.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    12. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Результат будет отображен в выбранной ячейке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Функция ZTEST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm index 7eae68a5c..9825c8bed 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/AdvancedSettings.htm @@ -9,7 +9,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Дополнительные параметры редактора электронных таблиц

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Вы можете изменить дополнительные параметры онлайн-редактора электронных таблиц. Для перехода к ним щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Дополнительные параметры.... Можно также использовать значок Значок Дополнительные параметры, расположенный в правом верхнем углу верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Вы можете изменить дополнительные параметры редактора электронных таблиц. Для перехода к ним откройте вкладку Файл на верхней панели инструментов и выберите опцию Дополнительные параметры.... Можно также использовать значок Значок Дополнительные параметры, расположенный в правом верхнем углу на вкладке Главная верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    В разделе Общие доступны следующие дополнительные параметры:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • diff --git a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm index 09aa6e270..547402422 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/CollaborativeEditing.htm @@ -22,8 +22,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Совместное редактирование

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      В редакторе электронных таблиц можно выбрать один из двух доступных режимов совместного редактирования. Быстрый используется по умолчанию, в нем изменения, вносимые другими пользователями, отображаются в реальном времени. Строгий режим позволяет скрывать изменения, внесенные другими пользователями, до тех пор, пока вы не нажмете значок Сохранить Значок Сохранить, чтобы сохранить ваши изменения и принять изменения, внесенные другими. Режим можно выбрать в Дополнительных настройках.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Когда электронную таблицу редактируют одновременно несколько пользователей в Строгом режиме, редактируемые ячейки, а также ярлычок листа, на котором находятся эти ячейки, помечаются пунктирными линиями разных цветов. При наведении курсора мыши на одну из редактируемых ячеек отображается имя того пользователя, который в данный момент ее редактирует. В Быстром режиме действия и имена участников совместного редактирования отображаются непосредственно в процессе редактирования.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Количество пользователей, которые в данный момент работают над текущей электронной таблицей, отображается в правом нижнем углу в строке состояния - Значок Количество пользователей. Чтобы увидеть, кто именно редактирует файл в настоящий момент, можно открыть панель Чата с полным списком пользователей.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Если файл не просматривают или не редактируют другие пользователи, значок в строке состояния будет выглядеть следующим образом: Значок Управление правами доступа к документу, с его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: Значок Количество пользователей.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Количество пользователей, которые в данный момент работают над текущей электронной таблицей, отображается в правой части шапки редактора - Значок Количество пользователей. Чтобы увидеть, кто именно редактирует файл в настоящий момент, можно щелкнуть по этому значку или открыть панель Чата с полным списком пользователей.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Если файл не просматривают или не редактируют другие пользователи, значок в шапке редактора будет выглядеть следующим образом: Значок Управление правами доступа к документу. C его помощью можно непосредственно из документа управлять пользователями, имеющими доступ к файлу: приглашать новых пользователей, предоставляя им полный доступ или доступ только для чтения, или запрещать доступ к файлу для некоторых пользователей. Нажмите на этот значок для управления доступом к файлу; это можно сделать и в отсутствие других пользователей, которые просматривают или совместно редактируют документ в настоящий момент, и при наличии других пользователей, когда значок выглядит так: Значок Количество пользователей.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Как только один из пользователей сохранит свои изменения, нажав на значок Значок Сохранить, все остальные увидят в левом верхнем углу примечание, которое сообщает о наличии обновлений. Чтобы сохранить внесенные вами изменения и сделать их доступными для других пользователей, а также получить обновления, сохраненные другими пользователями, нажмите на значок Значок Сохранить и получить обновления в левом верхнем углу верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Чат

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Этот инструмент можно использовать для оперативного согласования процесса совместного редактирования, например, для того, чтобы договориться с другими участниками, кто и что должен делать, какой абзац вы собираетесь сейчас отредактировать и т.д.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @@ -41,20 +41,20 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Чтобы оставить комментарий:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. выделите ячейку, в которой, по Вашему мнению, содержится какая-то ошибка или проблема,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. переключитесь на вкладку Вставка верхней панели инструментов и нажмите на кнопку Значок Комментарий Комментарий или
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        используйте значок Значок Комментарии на левой боковой панели, чтобы открыть панель Комментарии, и нажмите на ссылку Добавить комментарий к документу или
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        щелкните правой кнопкой мыши внутри выделенной ячейки и выберите в меню команду Добавить комментарий,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. введите нужный текст,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      6. нажмите кнопку Добавить.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Комментарий появится на панели слева. В правом верхнем углу ячейки, к которой Вы добавили комментарий, появится оранжевый треугольник. Если требуется отключить эту функцию, нажмите на значок Значок Файл, выберите опцию Дополнительные параметры... и снимите флажок Включить отображение комментариев в тексте. В этом случае ячейки, к которым добавлены комментарии, будут помечаться, только если Вы нажмете на значок Значок Комментарии.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Комментарий появится на панели слева. В правом верхнем углу ячейки, к которой Вы добавили комментарий, появится оранжевый треугольник. Если требуется отключить эту функцию, нажмите на вкладку Файл на верхней панели инструментов, выберите опцию Дополнительные параметры... и снимите флажок Включить отображение комментариев в тексте. В этом случае ячейки, к которым добавлены комментарии, будут помечаться, только если Вы нажмете на значок Значок Комментарии.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Для просмотра комментария щелкните по ячейке. Вы или любой другой пользователь можете ответить на добавленный комментарий, чтобы дать ответ на вопросы или отчитаться о проделанной работе. Для этого надо нажать на ссылку Добавить ответ.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Вы можете управлять добавленными комментариями следующим образом:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • отредактировать их, нажав значок Значок Редактировать,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • удалить их, нажав значок Значок Удалить,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • закрыть обсуждение, нажав на значок Значок Решить, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок Значок Открыть снова. Если Вы хотите скрыть решенные комментарии, нажмите на значок Значок Файл, выберите опцию Дополнительные параметры... и снимите флажок Включить отображение решенных комментариев. В этом случае решенные комментарии будут подсвечиваться, только когда Вы нажмете на значок Значок Комментарии.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • закрыть обсуждение, нажав на значок Значок Решить, если задача или проблема, обозначенная в комментарии, решена; после этого обсуждение, которое Вы открыли своим комментарием, приобретет статус решенного. Чтобы вновь его открыть, нажмите на значок Значок Открыть снова. Если Вы хотите скрыть решенные комментарии, нажмите на вкладку Файл на верхней панели инструментов, выберите опцию Дополнительные параметры... и снимите флажок Включить отображение решенных комментариев. В этом случае решенные комментарии будут подсвечиваться, только когда Вы нажмете на значок Значок Комментарии.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Если Вы используете Строгий режим совместного редактирования, новые комментарии, добавленные другими пользователями, станут видимыми только после того, как Вы нажмете на значок Значок Сохранить в левом верхнем углу верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Чтобы закрыть панель с комментариями, нажмите на значок Значок Комментарии еще раз.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm index 492d11963..464eba215 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/KeyboardShortcuts.htm @@ -55,9 +55,9 @@ Распечатать электронную таблицу на одном из доступных принтеров или сохранить в файл. - Загрузить как + Скачать как... Ctrl+Shift+S - Открыть панель Загрузить как, чтобы сохранить просматриваемую в данный момент электронную таблицу на жестком диске компьютера в одном из поддерживаемых форматов: XLSX, ODS, CSV, HTML. + Открыть панель Скачать как..., чтобы сохранить просматриваемую в данный момент электронную таблицу на жестком диске компьютера в одном из поддерживаемых форматов: XLSX, PDF, ODS, CSV. Полноэкранный режим @@ -302,11 +302,12 @@ Функция SUM - Alt+'=' + Alt+равно (=) Вставить функцию SUM в выделенную ячейку. - Модификация объектов - + + Модификация объектов + Перемещение с шагом в один пиксель Ctrl diff --git a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/Navigation.htm b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/Navigation.htm index 4e6f2289a..053348229 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/Navigation.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/HelpfulHints/Navigation.htm @@ -9,19 +9,22 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Параметры представления и инструменты навигации

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      В онлайн-редакторе электронных таблиц доступен ряд инструментов для навигации, облегчающих просмотр и выделение ячеек в больших таблицах: настраиваемые панели, полосы прокрутки, кнопки навигации по листам, ярлычки листов и кнопки масштаба.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      В редакторе электронных таблиц доступен ряд инструментов для навигации, облегчающих просмотр и выделение ячеек в больших таблицах: настраиваемые панели, полосы прокрутки, кнопки навигации по листам, ярлычки листов и кнопки масштаба.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Настройте параметры представления

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Чтобы настроить стандартные параметры представления и установить наиболее удобный режим работы с электронной таблицей, щелкните по значку Параметры представления Значок Параметры представления в правом верхнем углу верхней панели инструментов и выберите, какие элементы интерфейса требуется скрыть или отобразить. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Чтобы настроить стандартные параметры представления и установить наиболее удобный режим работы с электронной таблицей, перейдите на вкладку Главная верхней панели инструментов, щелкните по значку Параметры представления Значок Параметры представления в правом верхнем углу и выберите, какие элементы интерфейса требуется скрыть или отобразить. Из выпадающего списка Параметры представления можно выбрать следующие опции:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Компактная панель инструментов - включает режим компактной панели инструментов, которая предоставляет доступ к основным функциям. Чтобы отобразить стандартную панель инструментов, щелкните по этой опции еще раз.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Скрыть строку заголовка - скрывает самую верхнюю панель, на которой отображается название электронной таблицы и опция Перейти к Документам. Чтобы отобразить скрытую строку заголовка, щелкните по этой опции еще раз.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + Скрыть панель инструментов - скрывает верхнюю панель инструментов, которая содержит команды. Вкладки при этом остаются видимыми. Чтобы показать панель инструментов, когда эта опция включена, можно нажать на любую вкладку. Панель инструментов будет отображаться до тех пор, пока вы не щелкнете мышью где-либо за ее пределами.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Чтобы отключить этот режим, перейдите на вкладку Главная, затем нажмите значок Параметры представления Значок Параметры представления и еще раз щелкните по опции Скрыть панель инструментов. Верхняя панель инструментов будет отображаться постоянно. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Примечание: можно также дважды щелкнуть по любой вкладке, чтобы скрыть верхнюю панель инструментов или отобразить ее снова.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Скрыть строку формул - скрывает панель, которая располагается под верхней панелью инструментов и используется для ввода и просмотра формул и их значений. Чтобы отобразить скрытую строку формул, щелкните по этой опции еще раз.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Скрыть заголовки - скрывает заголовки столбцов сверху и заголовки строк слева на рабочем листе. Чтобы отобразить скрытые заголовки, щелкните по этой опции еще раз.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Скрыть линии сетки - скрывает линии вокруг ячеек. Чтобы отобразить скрытые линии сетки, щелкните по этой опции еще раз.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Закрепить области - закрепляет все строки выше активной ячейки и все столбцы слева от нее таким образом, что они остаются видимыми при прокрутке электронной таблицы вправо или вниз. Чтобы снять закрепление областей, щелкните по этой опции еще раз или щелкните в любом месте рабочего листа правой кнопкой мыши и выберите пункт меню Снять закрепление областей.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Правая боковая панель свернута по умолчанию. Чтобы ее развернуть, выделите любой объект (например, изображение, диаграмму, фигуру) и щелкните по значку вкладки, которая в данный момент активирована. Чтобы свернуть правую боковую панель, щелкните по этому значку еще раз.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Можно также изменить размер открытой панели Комментарии или Чат путем простого перетаскивания: наведите курсор мыши на край левой боковой панели, чтобы курсор превратился в двунаправленную стрелку, и перетащите край панели вправо, чтобы увеличить ширину панели. Чтобы восстановить исходную ширину, перетащите край панели влево.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Используйте инструменты навигации

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Для осуществления навигации по электронной таблице используйте следующие инструменты:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AddBorders.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AddBorders.htm index 2d7397111..75c51d2b7 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AddBorders.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AddBorders.htm @@ -14,7 +14,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • выделите ячейку, диапазон ячеек мышью или весь рабочий лист, нажав сочетание клавиш Ctrl+A,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Примечание: можно также выделить несколько ячеек или диапазонов ячеек, которые не являются смежными, удерживая клавишу Ctrl при выделении ячеек и диапазонов с помощью мыши.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • щелкните по значку Границы Значок Границы, расположенному на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • щелкните по значку Границы Значок Границы, расположенному на вкладке Главная верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • выберите стиль границ, который требуется применить:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. откройте подменю Стиль границ и выберите один из доступных вариантов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm index e4dad29f1..ae3a099fb 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AddHyperlinks.htm @@ -12,7 +12,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Для добавления гиперссылки:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1. выделите ячейку, в которую требуется добавить гиперссылку,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3. щелкните по значку Добавить гиперссылку Значок Добавить гиперссылку на верхней панели инструментов или выберите эту же опцию в контекстном меню, вызываемом правой кнопкой мыши,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5. перейдите на вкладку Вставка верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        7. нажмите значок Значок Гиперссылка Гиперссылка на верхней панели инструментов или выберите эту же опцию в контекстном меню, вызываемом правой кнопкой мыши,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        8. после этого появится окно Параметры гиперссылки, в котором можно указать параметры гиперссылки:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Тип ссылки - выберите из выпадающего списка тип ссылки, которую требуется вставить: diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AlignText.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AlignText.htm index 187075f32..545a8d963 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AlignText.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/AlignText.htm @@ -9,7 +9,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Выравнивание данных в ячейках

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Данные внутри ячейки можно выравнивать горизонтально или вертикально или даже поворачивать. Для этого выделите ячейку, диапазон ячеек мышью или весь рабочий лист, нажав сочетание клавиш Ctrl+A. Можно также выделить несколько ячеек или диапазонов ячеек, которые не являются смежными, удерживая клавишу Ctrl при выделении ячеек и диапазонов с помощью мыши. Затем выполните одну из следующих операций, используя значки, расположенные на верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Данные внутри ячейки можно выравнивать горизонтально или вертикально или даже поворачивать. Для этого выделите ячейку, диапазон ячеек мышью или весь рабочий лист, нажав сочетание клавиш Ctrl+A. Можно также выделить несколько ячеек или диапазонов ячеек, которые не являются смежными, удерживая клавишу Ctrl при выделении ячеек и диапазонов с помощью мыши. Затем выполните одну из следующих операций, используя значки, расположенные на вкладке Главная верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. Примените один из типов горизонтального выравнивания данных внутри ячейки:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ChangeNumberFormat.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ChangeNumberFormat.htm index 9949631d5..5a5eda3de 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ChangeNumberFormat.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ChangeNumberFormat.htm @@ -15,7 +15,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • выделите ячейку, диапазон ячеек мышью или весь рабочий лист, нажав сочетание клавиш Ctrl+A,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Примечание: можно также выделить несколько ячеек или диапазонов ячеек, которые не являются смежными, удерживая клавишу Ctrl при выделении ячеек и диапазонов с помощью мыши.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • нажмите кнопку Общий формат Кнопка Общий формат, расположенную на верхней панели инструментов, и выберите формат представления чисел, который надо применить: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • разверните список Числовой формат Список Числовой формат, расположенный на вкладке Главная верхней панели инструментов, и выберите формат представления чисел, который надо применить:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Общий - используется для отображения введенных данных как обычных чисел, самым компактным образом без дополнительных знаков,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Числовой - используется для отображения чисел с 0-30 знаками после десятичной запятой, где между каждой группой из трех цифр перед десятичной запятой вставляется разделитель тысяч,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • @@ -24,13 +24,13 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Финансовый - используется для отображения денежных значений с используемым по умолчанию обозначением денежной единицы и двумя десятичными знаками. Чтобы применить другое обозначение денежной единицы или количество десятичных знаков, следуйте приведенным ниже инструкциям. В отличие от Денежного формата, в Финансовом формате обозначения денежной единицы выравниваются по левому краю ячейки, нулевые значения представляются как тире, а отрицательные значения отображаются в скобках.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Финансовый и денежный форматы представления чисел

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Примечание: чтобы быстро применить к выделенным данным Финансовый формат, можно также щелкнуть по значку Финансовый формат Значок Финансовый формат на верхней панели инструментов и выбрать нужное обозначение денежной единицы: $ Доллар, Евро, £ Фунт, Рубль, ¥ Йена.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Примечание: чтобы быстро применить к выделенным данным Финансовый формат, можно также щелкнуть по значку Финансовый формат Значок Финансовый формат на вкладке Главная верхней панели инструментов и выбрать нужное обозначение денежной единицы: $ Доллар, Евро, £ Фунт, Рубль, ¥ Йена.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Денежный - используется для отображения денежных значений с используемым по умолчанию обозначением денежной единицы и двумя десятичными знаками. Чтобы применить другое обозначение денежной единицы или количество десятичных знаков, следуйте приведенным ниже инструкциям. В отличие от Финансового формата, в Денежном формате обозначение денежной единицы помещается непосредственно рядом с числом, а отрицательные значения отображаются с отрицательным знаком (-).
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Дата - используется для отображения дат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Время - используется для отображения времени,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Процентный - используется для отображения данных в виде процентов со знаком процента %, -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Примечание: чтобы быстро применить к данным процентный формат, можно также использовать значок Процентный формат Значок Процентный формат на верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Примечание: чтобы быстро применить к данным процентный формат, можно также использовать значок Процентный формат Значок Процентный формат на вкладке Главная верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Дробный - используется для отображения чисел в виде обыкновенных, а не десятичных дробей.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Текстовый - используется для отображения числовых значений, при котором они рассматриваются как обычный текст, с максимально доступной точностью.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • @@ -39,8 +39,8 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • при необходимости измените количество десятичных разрядов:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • используйте значок Увеличить разрядность Значок Увеличить разрядность, расположенный на верхней панели инструментов, чтобы увеличить количество знаков, отображаемых после десятичной запятой,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • используйте значок Уменьшить разрядность Значок Уменьшить разрядность, расположенный на верхней панели инструментов, чтобы уменьшить количество знаков, отображаемых после десятичной запятой.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • используйте значок Увеличить разрядность Значок Увеличить разрядность, расположенный на вкладке Главная верхней панели инструментов, чтобы увеличить количество знаков, отображаемых после десятичной запятой,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • используйте значок Уменьшить разрядность Значок Уменьшить разрядность, расположенный на вкладке Главная верхней панели инструментов, чтобы уменьшить количество знаков, отображаемых после десятичной запятой.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @@ -48,7 +48,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Настроить числовой формат можно следующим образом:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. выделите ячейки, для которых требуется настроить числовой формат,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. нажмите кнопку Общий формат Кнопка Общий формат на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. разверните список Числовой формат Список Числовой формат, расположенный на вкладке Главная верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. выберите опцию Другие форматы,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. в открывшемся окне Числовой формат настройте доступные параметры. Опции различаются в зависимости от того, какой числовой формат применен к выделенным ячейкам. Чтобы изменить числовой формат, можно использовать список Категория. diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ClearFormatting.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ClearFormatting.htm index c308e4ab9..7d9550392 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ClearFormatting.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ClearFormatting.htm @@ -16,7 +16,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. выделите мышью отдельную ячейку или диапазон ячеек или выделите весь рабочий лист, нажав сочетание клавиш Ctrl+A,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Примечание: можно также выделить несколько ячеек или диапазонов ячеек, которые не являются смежными, удерживая клавишу Ctrl при выделении ячеек и диапазонов с помощью мыши.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            9. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            10. щелкните по значку Очистить Очистить на верхней панели инструментов и выберите одну из доступных команд: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            11. щелкните по значку Очистить Очистить на вкладке Главная верхней панели инструментов и выберите одну из доступных команд:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • используйте команду Всё, если необходимо полностью очистить выбранный диапазон ячеек, включая текст, форматирование, функции и т.д.;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • используйте команду Текст, если необходимо удалить текст из выбранного диапазона ячеек;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • @@ -34,14 +34,14 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • с помощью мыши или клавиатуры выберите ячейку или диапазон ячеек, формат которых вам нужно скопировать,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • щелкните по значку Копировать стиль Копировать стиль на верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля), +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • щелкните по значку Копировать стиль Копировать стиль на вкладке Главная верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля),
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • выберите ячейку или диапазон ячеек, к которым вы хотите применить такое же форматирование.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Для того чтобы применить скопированное форматирование ко множеству ячеек или диапазонов ячеек, которые не являются смежными:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. с помощью мыши или клавиатуры выберите ячейку или диапазон ячеек, формат которых вам нужно скопировать,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. дважды щелкните по значку Копировать стиль Копировать стиль на верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля, а значок Копировать стиль будет оставаться нажатым: Множественное копирование стиля),
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. дважды щелкните по значку Копировать стиль Копировать стиль на вкладке Главная верхней панели инструментов (указатель мыши будет при этом выглядеть так: Указатель мыши при вставке стиля, а значок Копировать стиль будет оставаться нажатым: Множественное копирование стиля),
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. поочередно щелкайте по отдельным ячейкам или выделяйте диапазоны ячеек, чтобы применить одинаковое форматирование ко всем из них,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. для выхода из этого режима еще раз щелкните по значку Копировать стиль Множественное копирование стиля или нажмите клавишу Esc на клавиатуре.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/CopyPasteData.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/CopyPasteData.htm index f2ba55d8f..48479c417 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/CopyPasteData.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/CopyPasteData.htm @@ -10,7 +10,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Вырезание / копирование / вставка данных

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Использование основных операций с буфером обмена

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Для вырезания, копирования и вставки данных в текущей электронной таблице используйте контекстное меню или соответствующие значки на верхней панели инструментов:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Для вырезания, копирования и вставки данных в текущей электронной таблице используйте контекстное меню или соответствующие значки, доступные на любой вкладке верхней панели инструментов:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertImages.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertImages.htm index f532008f0..90bf8f635 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertImages.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertImages.htm @@ -15,7 +15,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Для вставки изображения в электронную таблицу:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. установите курсор там, где требуется поместить изображение,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. щелкните по значку Вставить изображение Значок Вставить изображение на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. перейдите на вкладку Вставка верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            6. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            7. нажмите значок Значок Изображение Изображение на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            8. для загрузки изображения выберите одну из следующих опций:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • при выборе опции Изображение из файла откроется стандартное диалоговое окно Windows для выбора файлов. Выберите нужный файл на жестком диске компьютера и нажмите кнопку Открыть
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertTextObjects.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertTextObjects.htm index e3349b183..edf465ab5 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertTextObjects.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertTextObjects.htm @@ -14,13 +14,13 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Добавление текстового объекта

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Текстовый объект можно добавить в любом месте рабочего листа. Для этого:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. щелкните по значку Вставить текст Значок Вставить текст на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. перейдите на вкладку Вставка верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. выберите нужный тип текстового объекта:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • выберите в меню опцию Вставить надпись, затем щелкните там, где требуется поместить надпись, удерживайте кнопку мыши и перетаскивайте границу текстового поля, чтобы задать его размер. Когда вы отпустите кнопку мыши, в добавленном текстовом поле появится курсор, и вы сможете ввести свой текст. -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: надпись можно также вставить, если щелкнуть по значку Вставить автофигуру Значок Вставить автофигуру на верхней панели инструментов и выбрать фигуру Автофигура Вставка текста из группы Основные фигуры.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • чтобы добавить текстовое поле, щелкните по значку Значок Текст Текст на верхней панели инструментов, затем щелкните там, где требуется поместить надпись, удерживайте кнопку мыши и перетаскивайте границу текстового поля, чтобы задать его размер. Когда вы отпустите кнопку мыши, в добавленном текстовом поле появится курсор, и вы сможете ввести свой текст. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: надпись можно также вставить, если щелкнуть по значку Значок Фигура Фигура на верхней панели инструментов и выбрать фигуру Автофигура Вставка текста из группы Основные фигуры.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • выберите в меню опцию Вставить объект Text Art, затем щелкните по нужному шаблону стиля – объект Text Art будет добавлен в центре рабочего листа. Выделите мышью стандартный текст внутри текстового поля и напишите вместо него свой текст.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • чтобы добавить объект Text Art, щелкните по значку Значок Text Art Text Art на верхней панели инструментов, затем щелкните по нужному шаблону стиля – объект Text Art будет добавлен в центре рабочего листа. Выделите мышью стандартный текст внутри текстового поля и напишите вместо него свой текст.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. щелкните за пределами текстового объекта, чтобы применить изменения и вернуться к рабочему листу.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                6. @@ -42,9 +42,9 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Выделенный текст

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Примечание: форматирование текста можно изменить и в том случае, если выделено текстовое поле, а не сам текст. В этом случае любые изменения будут применены ко всему тексту в текстовом поле. Некоторые параметры форматирования шрифта (тип, размер, цвет и стили оформления шрифта) можно отдельно применить к предварительно выделенному фрагменту текста.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Настройте параметры форматирования шрифта (измените его тип, размер, цвет и примените стили оформления) с помощью соответствующих значков на верхней панели инструментов. Некоторые дополнительные параметры шрифта можно также изменить на вкладке Шрифт в окне свойств абзаца. Чтобы его открыть, щелкнуть правой кнопкой мыши по тексту в текстовом поле и выберите опцию Дополнительные параметры текста.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Выровняйте текст внутри текстового поля по горизонтали с помощью соответствующих значков на верхней панели инструментов.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Выровняйте текст внутри текстового поля по вертикали с помощью соответствующих значков на верхней панели инструментов. Можно также щелкнуть по тексту правой кнопкой мыши, выбрать опцию Вертикальное выравнивание, а затем - один из доступных вариантов: По верхнему краю, По центру или По нижнему краю.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Настройте параметры форматирования шрифта (измените его тип, размер, цвет и примените стили оформления) с помощью соответствующих значков на вкладке Главная верхней панели инструментов. Некоторые дополнительные параметры шрифта можно также изменить на вкладке Шрифт в окне свойств абзаца. Чтобы его открыть, щелкнуть правой кнопкой мыши по тексту в текстовом поле и выберите опцию Дополнительные параметры текста.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Выровняйте текст внутри текстового поля по горизонтали с помощью соответствующих значков на вкладке Главная верхней панели инструментов.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Выровняйте текст внутри текстового поля по вертикали с помощью соответствующих значков на вкладке Главная верхней панели инструментов. Можно также щелкнуть по тексту правой кнопкой мыши, выбрать опцию Вертикальное выравнивание, а затем - один из доступных вариантов: По верхнему краю, По центру или По нижнему краю.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Поверните текст внутри текстового поля. Для этого щелкните по тексту правой кнопкой мыши, выберите опцию Направление текста, а затем выберите один из доступных вариантов: Горизонтальное (выбран по умолчанию), Поворот на 90° (задает вертикальное направление, сверху вниз) или Поворот на 270° (задает вертикальное направление, снизу вверх).
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Создайте маркированный или нумерованный список. Для этого щелкните по тексту правой кнопкой мыши, выберите в контекстном меню пункт Маркеры и нумерация, а затем выберите один из доступных знаков маркера или стилей нумерации.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Маркеры и нумерация

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ManipulateObjects.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ManipulateObjects.htm index ac8e48473..a7dd7b274 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ManipulateObjects.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ManipulateObjects.htm @@ -12,7 +12,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Можно изменять размер автофигур, изображений и диаграмм, вставленных на рабочий лист, перемещать, поворачивать их и располагать в определенном порядке.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Изменение размера объектов

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Для изменения размера автофигуры/изображения/диаграммы перетаскивайте маленькие квадраты Значок Квадрат, расположенные по краям объекта. Чтобы сохранить исходные пропорции выбранного объекта при изменении размера, удерживайте клавишу Shift и перетаскивайте один из угловых значков.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: для изменения размера вставленной диаграммы или изображения можно также использовать правую боковую панель, которая будет активирована, как только Вы выделите нужный объект. Чтобы открыть ее, щелкните по значку Параметры диаграммы Значок Параметры диаграммы или Параметры изображения Значок Параметры изображения справа. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: для изменения размера вставленной диаграммы или изображения можно также использовать правую боковую панель, которая будет активирована, как только Вы выделите нужный объект. Чтобы открыть ее, щелкните по значку Параметры диаграммы Значок Параметры диаграммы или Параметры изображения Значок Параметры изображения справа.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Сохранение пропорций

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Перемещение объектов

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Для изменения местоположения автофигуры/изображения/диаграммы используйте значок Стрелка, который появляется после наведения курсора мыши на объект. Перетащите объект на нужное место, не отпуская кнопку мыши. @@ -26,8 +26,8 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Упорядочивание нескольких объектов

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Если несколько объектов (автофигур, изображений и диаграмм) накладываются друг на друга, можно расположить их в определенном порядке, щелкнув по нужному объекту правой кнопкой мыши и выбрав из контекстного меню нужный тип расположения:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Вынести на передний план - чтобы переместить выбранный объект, так что он будет находиться перед всеми остальными объектами,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Переместить на задний план - чтобы переместить выбранный объект, так что он будет находиться позади всех остальных объектов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Перенести на передний план - чтобы переместить выбранный объект, так что он будет находиться перед всеми остальными объектами,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Перенести на задний план - чтобы переместить выбранный объект, так что он будет находиться позади всех остальных объектов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Перенести вперед - чтобы переместить выбранный объект на один уровень вперед по отношению к другим объектам,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Перенести назад - чтобы переместить выбранный объект на один уровень назад по отношению к другим объектам.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/MergeCells.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/MergeCells.htm index e45b0d090..a8cf2c6b7 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/MergeCells.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/MergeCells.htm @@ -14,7 +14,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • выделите мышью две ячейки или диапазон ячеек,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: выделенные ячейки ДОЛЖНЫ быть смежными.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • щелкните по значку Объединить Значок Объединить, расположенному на верхней панели инструментов, и выберите одну из доступных опций: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • щелкните по значку Объединить Значок Объединить, расположенному на вкладке Главная верхней панели инструментов, и выберите одну из доступных опций:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: в объединенной ячейке останутся только данные из верхней левой ячейки выбранного диапазона. Данные в других ячейках выбранного диапазона будут удалены.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • при выборе команды Объединить и поместить в центре ячейки выбранного диапазона будут объединены, а данные будут размещены в центре объединенной ячейки;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm index 0a793c350..0fdecf861 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/OpenCreateNew.htm @@ -11,17 +11,17 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Создание новой электронной таблицы или открытие существующей

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Для создания новой электронной таблицы, когда онлайн-редактор электронных таблиц открыт:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. щелкните по значку Файл Значок Файл на левой боковой панели,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. нажмите на вкладку Файл на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. выберите опцию Создать новую.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      После завершения работы с одной электронной таблицей можно сразу перейти к уже существующей электронной таблице, которая недавно была отредактирована, или вернуться к списку существующих таблиц.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Для открытия недавно отредактированной электронной таблицы в онлайн-редакторе электронных таблиц:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1. щелкните по значку Файл Значок Файл на левой боковой панели,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3. нажмите на вкладку Файл на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      4. выберите опцию Открыть последние,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      5. выберите нужную электронную таблицу из списка недавно отредактированных электронных таблиц.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Для возврата к списку существующих электронных таблиц нажмите на ссылку Перейти к Документам в правом верхнем углу или используйте значок Файл Значок Файл на левой боковой панели и выберите опцию Перейти к Документам.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Для возврата к списку существующих электронных таблиц нажмите на значок Перейти к Документам Перейти к Документам в правой части шапки редактора. Можно также перейти на вкладку Файл на верхней панели инструментов и выбрать опцию Перейти к Документам.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm index 292d7f3e9..c445a308e 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/SavePrintDownload.htm @@ -15,12 +15,12 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • щелкните по значку Сохранить Значок Сохранить на верхней панели инструментов, или
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • используйте сочетание клавиш Ctrl+S, или
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Сохранить.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Сохранить.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Чтобы скачать готовую электронную таблицу и сохранить ее на жестком диске компьютера,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1. щелкните по значку Файл Значок Файл на левой боковой панели,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            3. нажмите на вкладку Файл на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            4. выберите опцию Скачать как...,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5. выберите один из доступных форматов в зависимости от того, что вам нужно: XLSX, PDF, ODS, CSV.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Примечание: если вы выберете формат CSV, весь функционал (форматирование шрифта, формулы и так далее), кроме обычного текста, не сохранится в файле CSV. Если вы продолжите сохранение, откроется окно Выбрать параметры CSV. По умолчанию в качестве типа Кодировки используется Unicode (UTF-8). Стандартным Разделителем является запятая (,), но доступны также следующие варианты: точка с запятой (;), двоеточие (:), Табуляция, Пробел и Другое (эта опция позволяет задать пользовательский символ разделителя).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @@ -31,10 +31,10 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • щелкните по значку Печать Значок Печать на верхней панели инструментов, или
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • используйте сочетание клавиш Ctrl+P, или
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Печать.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Печать.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Откроется окно Параметры печати, в котором можно изменить параметры печати, заданные по умолчанию. Нажмите на кнопку Показать детали внизу окна, чтобы отобразить все параметры.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Примечание: параметры печати можно также настроить на странице Дополнительные параметры...: нажмите на значок Файл Значок Файл на левой боковой панели и перейдите в раздел: Дополнительные параметры... >> Параметры страницы.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Примечание: параметры печати можно также настроить на странице Дополнительные параметры...: нажмите на вкладку Файл на верхней панели инструментов и перейдите в раздел: Дополнительные параметры... >> Параметры страницы.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Окно Параметры печати

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Здесь можно задать следующие параметры:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/SortData.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/SortData.htm index 6570f67f2..b12b82a44 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/SortData.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/SortData.htm @@ -19,9 +19,9 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Для сортировки данных:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. выделите диапазон ячеек, который требуется отсортировать (можно выделить отдельную ячейку в диапазоне, чтобы отсортировать весь диапазон),
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. щелкните по значку Сортировка по возрастанию Значок Сортировка по возрастанию, расположенному на верхней панели инструментов, для сортировки данных в порядке возрастания, +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. щелкните по значку Сортировка по возрастанию Значок Сортировка по возрастанию, расположенному на вкладке Главная верхней панели инструментов, для сортировки данных в порядке возрастания,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ИЛИ
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - щелкните по значку Сортировка по убыванию Значок Сортировка по убыванию, расположенному на верхней панели инструментов, для сортировки данных в порядке убывания. + щелкните по значку Сортировка по убыванию Значок Сортировка по убыванию, расположенному на вкладке Главная верхней панели инструментов, для сортировки данных в порядке убывания.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Примечание: если вы выделите отдельный столбец/строку в диапазоне ячеек или часть строки/столбца, вам будет предложено выбрать, хотите ли вы расширить выделенный диапазон, чтобы включить смежные ячейки, или отсортировать только выделенные данные.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @@ -45,7 +45,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. Выделите диапазон ячеек, содержащих данные, которые требуется отфильтровать (можно выделить отдельную ячейку в диапазоне, чтобы отфильтровать весь диапазон),
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. - Щелкните по значку Фильтр Значок Фильтр, расположенному на верхней панели инструментов. + Щелкните по значку Фильтр Значок Фильтр, расположенному на вкладке Главная верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  В первой ячейке каждого столбца выделенного диапазона ячеек появится кнопка со стрелкой Кнопка со стрелкой. Это означает, что фильтр включен.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @@ -138,7 +138,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Чтобы облегчить работу с данными, в онлайн-редакторе электронных таблиц предусмотрена возможность применения к выделенному диапазону ячеек шаблона таблицы с автоматическим включением фильтра. Для этого:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1. выделите диапазон ячеек, которые требуется отформатировать,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3. щелкните по значку Форматировать как шаблон таблицы Значок Форматировать как шаблон таблицы, расположенному на верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                5. щелкните по значку Форматировать как шаблон таблицы Значок Форматировать как шаблон таблицы, расположенному на вкладке Главная верхней панели инструментов,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                6. в галерее выберите требуемый шаблон,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                7. в открывшемся всплывающем окне проверьте диапазон ячеек, которые требуется отформатировать как таблицу,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                8. установите флажок Заголовок, если требуется, чтобы заголовки таблицы входили в выделенный диапазон ячеек; в противном случае строка заголовка будет добавлена наверху, в то время как выделенный диапазон ячеек сместится на одну строку вниз,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                9. @@ -192,7 +192,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Можно также поступить следующим образом:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите диапазон ячеек, которые содержат отфильтрованные данные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. щелкните по значку Очистить фильтр Значок Очистить фильтр, расположенному на верхней панели инструментов.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  4. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5. щелкните по значку Очистить фильтр Значок Очистить фильтр, расположенному на вкладке Главная верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Фильтр останется включенным, но все примененные параметры фильтра будут удалены, а кнопки Фильтр Кнопка фильтр @@ -203,7 +203,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1. выделите диапазон ячеек, содержащих отфильтрованные данные,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2. - щелкните по значку Фильтр Значок Фильтр, расположенному на верхней панели инструментов.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3. + щелкните по значку Фильтр Значок Фильтр, расположенному на вкладке Главная верхней панели инструментов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Фильтр будет отключен, а кнопки со стрелкой Кнопка со стрелкой исчезнут из первых ячеек столбцов.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/UndoRedo.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/UndoRedo.htm index b94e6cd01..de4d0e3ec 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/UndoRedo.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/UndoRedo.htm @@ -10,7 +10,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Отмена / повтор действий

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Для выполнения операций отмены / повтора используйте соответствующие значки на верхней панели инструментов:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Для выполнения операций отмены / повтора используйте соответствующие значки, доступные на любой вкладке верхней панели инструментов:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Отменить – используйте значок Отменить Значок Отменить, чтобы отменить последнее выполненное действие.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Повторить – используйте значок Повторить Значок Повторить, чтобы повторить последнее отмененное действие.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/UseNamedRanges.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/UseNamedRanges.htm index b50135a34..30e1bbc34 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/UseNamedRanges.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/UseNamedRanges.htm @@ -24,7 +24,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Откройте окно создания нового имени удобным для вас способом:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Щелкните по выделенной области правой кнопкой мыши и выберите из контекстного меню пункт Присвоить имя
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • или щелкните по значку Именованные диапазоны Значок Именованные диапазоны на верхней панели инструментов и выберите из меню опцию Новое имя.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • или щелкните по значку Именованные диапазоны Значок Именованные диапазоны на вкладке Главная верхней панели инструментов и выберите из меню опцию Новое имя.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Откроется окно Новое имя:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Окно Новое имя

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @@ -44,7 +44,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Управление именами

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Получить доступ ко всем существующим именам можно через Диспетчер имен. Чтобы его открыть:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • щелкните по значку Именованные диапазоны Значок Именованные диапазоны на верхней панели инструментов и выберите из меню опцию Диспетчер имен
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • щелкните по значку Именованные диапазоны Значок Именованные диапазоны на вкладке Главная верхней панели инструментов и выберите из меню опцию Диспетчер имен
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • или щелкните по стрелке в поле "Имя" и выберите опцию Диспетчер.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Откроется окно Диспетчер имен:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @@ -67,7 +67,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Выполните одно из следующих действий:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • введите имя нужного именованного диапазона вручную с помощью клавиатуры. Как только вы введете начальные буквы, появится список Автозавершения формул. По мере ввода в нем отображаются элементы (формулы и имена), которые соответствуют введенным символам. Можно выбрать нужное имя из списка и вставить его в формулу, дважды щелкнув по нему или нажав клавишу Tab.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • или щелкните по значку Именованные диапазоны Значок Именованные диапазоны на верхней панели инструментов, выберите из меню опцию Вставить имя, выберите нужное имя в окне Вставка имени и нажмите кнопку OK: +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • или щелкните по значку Именованные диапазоны Значок Именованные диапазоны на вкладке Главная верхней панели инструментов, выберите из меню опцию Вставить имя, выберите нужное имя в окне Вставка имени и нажмите кнопку OK:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Окно Вставка имени

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ViewDocInfo.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ViewDocInfo.htm index 868aa55b0..7628eb506 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ViewDocInfo.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/ViewDocInfo.htm @@ -9,10 +9,10 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Просмотр сведений о файле

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Чтобы получить доступ к подробным сведениям о редактируемой электронной таблице, щелкните по значку Файл Значок Файл на левой боковой панели и выберите опцию Сведения о таблице.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Чтобы получить доступ к подробным сведениям о редактируемой электронной таблице, нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Сведения о таблице.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Общие сведения

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Сведения о файле включают название электронной таблицы, автора, размещение и дату создания.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: используя онлайн-редакторы, вы можете изменить название электронной таблицы непосредственно из интерфейса редактора. Для этого выберите опцию Переименовать... в меню Файл Значок Файл или щелкните по имени файла, отображенному в шапке редактора рядом с логотипом (в левом верхнем углу), затем введите нужное Имя файла в новом открывшемся окне и нажмите кнопку OK.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: используя онлайн-редакторы, вы можете изменить название электронной таблицы непосредственно из интерфейса редактора. Для этого нажмите на вкладку Файл на верхней панели инструментов и выберите опцию Переименовать..., затем введите нужное Имя файла в новом открывшемся окне и нажмите кнопку OK.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Сведения о правах доступа

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Примечание: эта опция недоступна для пользователей с правами доступа Только чтение.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/access_rights.png b/apps/spreadsheeteditor/main/resources/help/ru/images/access_rights.png index 6d3cb0bf8..63cf5f972 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/access_rights.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/access_rights.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/addhyperlink.png b/apps/spreadsheeteditor/main/resources/help/ru/images/addhyperlink.png index 5627099c9..47b4c40df 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/addhyperlink.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/addhyperlink.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/aggregate.png b/apps/spreadsheeteditor/main/resources/help/ru/images/aggregate.png new file mode 100644 index 000000000..b5a98dd96 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/aggregate.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/aggregate2.png b/apps/spreadsheeteditor/main/resources/help/ru/images/aggregate2.png new file mode 100644 index 000000000..add01cfaa Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/aggregate2.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/basiccalculations.png b/apps/spreadsheeteditor/main/resources/help/ru/images/basiccalculations.png index ee59290db..27fbadaeb 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/basiccalculations.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/basiccalculations.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/besseli.png b/apps/spreadsheeteditor/main/resources/help/ru/images/besseli.png new file mode 100644 index 000000000..a40c85ae5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/besseli.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/besselj.png b/apps/spreadsheeteditor/main/resources/help/ru/images/besselj.png new file mode 100644 index 000000000..aa2f9709b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/besselj.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/besselk.png b/apps/spreadsheeteditor/main/resources/help/ru/images/besselk.png new file mode 100644 index 000000000..c9c6b9d67 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/besselk.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/bessely.png b/apps/spreadsheeteditor/main/resources/help/ru/images/bessely.png new file mode 100644 index 000000000..da36466f2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/bessely.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/binom-dist-range.png b/apps/spreadsheeteditor/main/resources/help/ru/images/binom-dist-range.png new file mode 100644 index 000000000..da008d647 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/binom-dist-range.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/bitand.png b/apps/spreadsheeteditor/main/resources/help/ru/images/bitand.png new file mode 100644 index 000000000..1e4c84aff Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/bitand.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/bitlshift.png b/apps/spreadsheeteditor/main/resources/help/ru/images/bitlshift.png new file mode 100644 index 000000000..05b7e942b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/bitlshift.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/bitor.png b/apps/spreadsheeteditor/main/resources/help/ru/images/bitor.png new file mode 100644 index 000000000..a5bba46c7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/bitor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/bitrshift.png b/apps/spreadsheeteditor/main/resources/help/ru/images/bitrshift.png new file mode 100644 index 000000000..2e70b8110 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/bitrshift.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/bitxor.png b/apps/spreadsheeteditor/main/resources/help/ru/images/bitxor.png new file mode 100644 index 000000000..d98528c30 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/bitxor.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/chart.png b/apps/spreadsheeteditor/main/resources/help/ru/images/chart.png index a56e47b11..c439ab44f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/chart.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/chart.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/chartsettingsicon.png b/apps/spreadsheeteditor/main/resources/help/ru/images/chartsettingsicon.png new file mode 100644 index 000000000..4320e8051 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/chartsettingsicon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/chisq-test.png b/apps/spreadsheeteditor/main/resources/help/ru/images/chisq-test.png new file mode 100644 index 000000000..a1d22d69f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/chisq-test.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/chitest.png b/apps/spreadsheeteditor/main/resources/help/ru/images/chitest.png new file mode 100644 index 000000000..271576773 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/chitest.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/comment_toptoolbar.png b/apps/spreadsheeteditor/main/resources/help/ru/images/comment_toptoolbar.png new file mode 100644 index 000000000..a33649d46 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/comment_toptoolbar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/covariance-p.png b/apps/spreadsheeteditor/main/resources/help/ru/images/covariance-p.png new file mode 100644 index 000000000..0461f55be Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/covariance-p.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/covariance-s.png b/apps/spreadsheeteditor/main/resources/help/ru/images/covariance-s.png new file mode 100644 index 000000000..d843cb17c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/covariance-s.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/daverage.png b/apps/spreadsheeteditor/main/resources/help/ru/images/daverage.png new file mode 100644 index 000000000..8e3fb73b8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/daverage.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/days.png b/apps/spreadsheeteditor/main/resources/help/ru/images/days.png new file mode 100644 index 000000000..a3deec0f9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/days.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dcount.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dcount.png new file mode 100644 index 000000000..9fc6c77a6 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dcount.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dcounta.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dcounta.png new file mode 100644 index 000000000..69c1899d9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dcounta.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dget.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dget.png new file mode 100644 index 000000000..c3419689f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dget.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dmax.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dmax.png new file mode 100644 index 000000000..497e3664c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dmax.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dmin.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dmin.png new file mode 100644 index 000000000..c3a268515 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dmin.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dproduct.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dproduct.png new file mode 100644 index 000000000..28eaec0d9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dproduct.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dstdev.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dstdev.png new file mode 100644 index 000000000..2b3c5da70 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dstdev.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dstdevp.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dstdevp.png new file mode 100644 index 000000000..866096573 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dstdevp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dsum.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dsum.png new file mode 100644 index 000000000..3d5e5b6e8 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dsum.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dvar.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dvar.png new file mode 100644 index 000000000..0cb29d70b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dvar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/dvarp.png b/apps/spreadsheeteditor/main/resources/help/ru/images/dvarp.png new file mode 100644 index 000000000..9bb8a71a4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/dvarp.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/ecma-ceiling.png b/apps/spreadsheeteditor/main/resources/help/ru/images/ecma-ceiling.png new file mode 100644 index 000000000..dadb35394 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/ecma-ceiling.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/erf-precise.png b/apps/spreadsheeteditor/main/resources/help/ru/images/erf-precise.png new file mode 100644 index 000000000..51d697e70 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/erf-precise.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/erfc-precise.png b/apps/spreadsheeteditor/main/resources/help/ru/images/erfc-precise.png new file mode 100644 index 000000000..ab80c3578 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/erfc-precise.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/firstsheet.png b/apps/spreadsheeteditor/main/resources/help/ru/images/firstsheet.png index 636985dde..391f115b3 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/firstsheet.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/firstsheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/forecast-linear.png b/apps/spreadsheeteditor/main/resources/help/ru/images/forecast-linear.png new file mode 100644 index 000000000..3c3b72943 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/forecast-linear.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/gotodocuments.png b/apps/spreadsheeteditor/main/resources/help/ru/images/gotodocuments.png new file mode 100644 index 000000000..bf5449484 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/gotodocuments.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/grouping.png b/apps/spreadsheeteditor/main/resources/help/ru/images/grouping.png index 1e360b29e..81bbd3e51 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/grouping.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/grouping.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/image.png b/apps/spreadsheeteditor/main/resources/help/ru/images/image.png index 90eab5b06..58ca36dde 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/image.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/image.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/insertautoshape.png b/apps/spreadsheeteditor/main/resources/help/ru/images/insertautoshape.png index 5e49eab70..315c8474c 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/insertautoshape.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/insertautoshape.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/insertchart.png b/apps/spreadsheeteditor/main/resources/help/ru/images/insertchart.png index 0d312f97c..c439ab44f 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/insertchart.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/insertchart.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/insertequationicon.png b/apps/spreadsheeteditor/main/resources/help/ru/images/insertequationicon.png index 86b6d1c24..7dcd29b1c 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/insertequationicon.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/insertequationicon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/inserttextarticon.png b/apps/spreadsheeteditor/main/resources/help/ru/images/inserttextarticon.png new file mode 100644 index 000000000..7b40e327f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/inserttextarticon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/inserttexticon.png b/apps/spreadsheeteditor/main/resources/help/ru/images/inserttexticon.png index db7a834ba..26fbaac13 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/inserttexticon.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/inserttexticon.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/isformula.png b/apps/spreadsheeteditor/main/resources/help/ru/images/isformula.png new file mode 100644 index 000000000..1b1270f6a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/isformula.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/isoweeknum.png b/apps/spreadsheeteditor/main/resources/help/ru/images/isoweeknum.png new file mode 100644 index 000000000..c95b955df Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/isoweeknum.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/lastsheet.png b/apps/spreadsheeteditor/main/resources/help/ru/images/lastsheet.png index 7906401b5..09e8fbf73 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/lastsheet.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/lastsheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/maintain_proportions.png b/apps/spreadsheeteditor/main/resources/help/ru/images/maintain_proportions.png index 552e843f7..6f89dbdcb 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/maintain_proportions.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/maintain_proportions.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/maxifs.png b/apps/spreadsheeteditor/main/resources/help/ru/images/maxifs.png new file mode 100644 index 000000000..523e8b1f7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/maxifs.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/minifs.png b/apps/spreadsheeteditor/main/resources/help/ru/images/minifs.png new file mode 100644 index 000000000..2efcc9052 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/minifs.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/mode-mult.png b/apps/spreadsheeteditor/main/resources/help/ru/images/mode-mult.png new file mode 100644 index 000000000..100666f04 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/mode-mult.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/mode-sngl.png b/apps/spreadsheeteditor/main/resources/help/ru/images/mode-sngl.png new file mode 100644 index 000000000..a2fed34ec Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/mode-sngl.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/negbinom-dist.png b/apps/spreadsheeteditor/main/resources/help/ru/images/negbinom-dist.png new file mode 100644 index 000000000..58979e62f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/negbinom-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/networkdays-intl.png b/apps/spreadsheeteditor/main/resources/help/ru/images/networkdays-intl.png new file mode 100644 index 000000000..9a1673ae7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/networkdays-intl.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/nextsheet.png b/apps/spreadsheeteditor/main/resources/help/ru/images/nextsheet.png index 74b7c7ced..85fa921d5 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/nextsheet.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/nextsheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/norm-dist.png b/apps/spreadsheeteditor/main/resources/help/ru/images/norm-dist.png new file mode 100644 index 000000000..297e0f54d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/norm-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/norm-inv.png b/apps/spreadsheeteditor/main/resources/help/ru/images/norm-inv.png new file mode 100644 index 000000000..9ab859681 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/norm-inv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/norm-s-dist.png b/apps/spreadsheeteditor/main/resources/help/ru/images/norm-s-dist.png new file mode 100644 index 000000000..7f64f9479 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/norm-s-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/norm-s-inv.png b/apps/spreadsheeteditor/main/resources/help/ru/images/norm-s-inv.png new file mode 100644 index 000000000..133defd8c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/norm-s-inv.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/permutationa.png b/apps/spreadsheeteditor/main/resources/help/ru/images/permutationa.png new file mode 100644 index 000000000..a3d99b4d2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/permutationa.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/phi.png b/apps/spreadsheeteditor/main/resources/help/ru/images/phi.png new file mode 100644 index 000000000..6a48f459d Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/phi.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/poisson-dist.png b/apps/spreadsheeteditor/main/resources/help/ru/images/poisson-dist.png new file mode 100644 index 000000000..92ed3b582 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/poisson-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/previoussheet.png b/apps/spreadsheeteditor/main/resources/help/ru/images/previoussheet.png index 563b5f082..ecb9a8de4 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/previoussheet.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/previoussheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/quartile-exc.png b/apps/spreadsheeteditor/main/resources/help/ru/images/quartile-exc.png new file mode 100644 index 000000000..8de45cbb5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/quartile-exc.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/quartile-inc.png b/apps/spreadsheeteditor/main/resources/help/ru/images/quartile-inc.png new file mode 100644 index 000000000..2cf59242f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/quartile-inc.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/reshaping.png b/apps/spreadsheeteditor/main/resources/help/ru/images/reshaping.png index 63d533706..25d1a7777 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/reshaping.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/reshaping.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/rri.png b/apps/spreadsheeteditor/main/resources/help/ru/images/rri.png new file mode 100644 index 000000000..f9eb7c6c2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/rri.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/sheet.png b/apps/spreadsheeteditor/main/resources/help/ru/images/sheet.png new file mode 100644 index 000000000..ca794de92 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/sheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/sheets.png b/apps/spreadsheeteditor/main/resources/help/ru/images/sheets.png new file mode 100644 index 000000000..24cc5ca75 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/sheets.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/skew-p.png b/apps/spreadsheeteditor/main/resources/help/ru/images/skew-p.png new file mode 100644 index 000000000..9752e422a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/skew-p.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/stdev-p.png b/apps/spreadsheeteditor/main/resources/help/ru/images/stdev-p.png new file mode 100644 index 000000000..e7c8494e4 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/stdev-p.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/stdev-s.png b/apps/spreadsheeteditor/main/resources/help/ru/images/stdev-s.png new file mode 100644 index 000000000..fc9fe8efe Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/stdev-s.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/switch.png b/apps/spreadsheeteditor/main/resources/help/ru/images/switch.png new file mode 100644 index 000000000..23ec69f12 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/switch.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/t-test.png b/apps/spreadsheeteditor/main/resources/help/ru/images/t-test.png new file mode 100644 index 000000000..587d9ce24 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/t-test.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/table.png b/apps/spreadsheeteditor/main/resources/help/ru/images/table.png index c65d9d32b..0e8b33b19 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/table.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/table.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/textjoin.png b/apps/spreadsheeteditor/main/resources/help/ru/images/textjoin.png new file mode 100644 index 000000000..3ddfc9594 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/textjoin.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/trimmean.png b/apps/spreadsheeteditor/main/resources/help/ru/images/trimmean.png new file mode 100644 index 000000000..469f27faf Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/trimmean.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/ttest.png b/apps/spreadsheeteditor/main/resources/help/ru/images/ttest.png new file mode 100644 index 000000000..bd6d8adae Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/ttest.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/unichar.png b/apps/spreadsheeteditor/main/resources/help/ru/images/unichar.png new file mode 100644 index 000000000..9dff72bf9 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/unichar.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/unicode.png b/apps/spreadsheeteditor/main/resources/help/ru/images/unicode.png new file mode 100644 index 000000000..e5068d9bb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/unicode.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/usersnumber.png b/apps/spreadsheeteditor/main/resources/help/ru/images/usersnumber.png index 1d378846f..15de516d8 100644 Binary files a/apps/spreadsheeteditor/main/resources/help/ru/images/usersnumber.png and b/apps/spreadsheeteditor/main/resources/help/ru/images/usersnumber.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/var-p.png b/apps/spreadsheeteditor/main/resources/help/ru/images/var-p.png new file mode 100644 index 000000000..63cbce1c3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/var-p.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/var-s.png b/apps/spreadsheeteditor/main/resources/help/ru/images/var-s.png new file mode 100644 index 000000000..d85bf2883 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/var-s.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/weibull-dist.png b/apps/spreadsheeteditor/main/resources/help/ru/images/weibull-dist.png new file mode 100644 index 000000000..0b30de8c5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/weibull-dist.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/weibull.png b/apps/spreadsheeteditor/main/resources/help/ru/images/weibull.png new file mode 100644 index 000000000..f3fc48f6a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/weibull.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/workday-intl.png b/apps/spreadsheeteditor/main/resources/help/ru/images/workday-intl.png new file mode 100644 index 000000000..69a2655e5 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/workday-intl.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/z-test.png b/apps/spreadsheeteditor/main/resources/help/ru/images/z-test.png new file mode 100644 index 000000000..101f27a0e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/z-test.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/ztest.png b/apps/spreadsheeteditor/main/resources/help/ru/images/ztest.png new file mode 100644 index 000000000..87eb98c5c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/ztest.png differ diff --git a/apps/spreadsheeteditor/mobile/app/controller/Main.js b/apps/spreadsheeteditor/mobile/app/controller/Main.js index 87af5118f..5d648339a 100644 --- a/apps/spreadsheeteditor/mobile/app/controller/Main.js +++ b/apps/spreadsheeteditor/mobile/app/controller/Main.js @@ -174,7 +174,7 @@ define([ Common.Gateway.on('init', _.bind(me.loadConfig, me)); Common.Gateway.on('showmessage', _.bind(me.onExternalMessage, me)); Common.Gateway.on('opendocument', _.bind(me.loadDocument, me)); - Common.Gateway.ready(); + Common.Gateway.appReady(); } }, @@ -455,6 +455,8 @@ define([ if (this._isDocReady) return; + Common.Gateway.documentReady(); + if (this._state.openDlg) uiApp.closeModal(this._state.openDlg); 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": "返回",